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>

  • 相关阅读:
    node cluster(集群) 模块可以创建共享服务器端口的子进程
    通过 Channel Messaging API的「MessageChannel」,实现iframe与主页面的双通讯
    5.nginx的keepalive和pipe
    4.nginx的server_name正则匹配
    3.nginx的特殊server_name及匹配
    2.nginx的server_name匹配顺序
    1.初识nginx
    flutter pub.get 没有反应
    linux cp拷贝文件时,不确认强制覆盖
    Cocos学习笔记
  • 原文地址:https://www.cnblogs.com/leischen/p/2551494.html
Copyright © 2011-2022 走看看