zoukankan      html  css  js  c++  java
  • SL模版引用

    public class IconConverter : IValueConverter
    {

    public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
    {
    if (value != null)
    {
    string iconUrl = value.ToString();
    if (!string.IsNullOrEmpty(iconUrl))
    {
    return "/Abis.Res;component/Icons/" + iconUrl;
    }
    }
    return value;
    }

    public object ConvertBack(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
    {
    throw new NotImplementedException();
    }
    }

    <UserControl.Resources>
    <Conver:IconConverter x:Key="IconConver" />
    <DataTemplate x:Key="IMG">
    <StackPanel>
    <Image Margin="2"
    Width="16"
    Height="16"
    Stretch="Fill"
    Source="{Binding IconName ,Converter={StaticResource IconConver}}"></Image>
    </StackPanel>
    </DataTemplate>
    <DataTemplate x:Key="dataTemplate1">
    <TextBlock Text="test"
    HorizontalAlignment="Center"></TextBlock>
    </DataTemplate>
    <Style x:Key="DataGridHeaderStyle"
    TargetType="Primitives:DataGridColumnHeader">
    <Setter Property="HorizontalContentAlignment"
    Value="Center"></Setter>
    </Style>
    <Style x:Key="DataGridCellStyle"
    TargetType="data:DataGridCell">
    <Setter Property="HorizontalContentAlignment"
    Value="Center"></Setter>
    </Style>
    </UserControl.Resources>

    <c1:Column Header="图标"
    Width="60"
    HorizontalAlignment="Center"
    VerticalAlignment="Center"
    HeaderVerticalAlignment="Center" CellTemplate="{StaticResource IMG}">
    <!--<c1:Column.CellTemplate>
    <DataTemplate>
    <StackPanel>
    <Image Width="16"
    Height="16"
    Stretch="Fill"
    HorizontalAlignment="Center"
    VerticalAlignment="Center"
    Source="{Binding IconName,Converter={StaticResource IconConver}}"></Image>
    </StackPanel>
    </DataTemplate>
    </c1:Column.CellTemplate>-->
    </c1:Column>

  • 相关阅读:
    Android性能调优实例
    Android移动端网络优化
    性能优化之Java(Android)代码优化
    Android性能优化之布局优化
    Android性能优化之数据库优化
    Android性能优化系列总篇
    ViewGroup的事件分发机制
    Apk大瘦身
    不安装APK直接启动应用
    Intent详解
  • 原文地址:https://www.cnblogs.com/leischen/p/2551494.html
Copyright © 2011-2022 走看看