• 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>

  • 相关阅读:
    11.SpringBoot学习(十一)——JDBC之 Spring Boot JdbcTemplate
    10.SpringBoot学习(十)——JDBC之 Spring Boot Jpa
    9.SpringBoot学习(九)——Spring Boot Admin使用
    8.SpringBoot学习(八)——Spring Boot Actuator监控
    7.SpringBoot学习(七)——Spring Boot Email发送邮件
    5.Gradle组件说明
    3.Gradle构建Java项目
    6.Gradle多模块项目
    flash解析json格式
    java窗体与Flash交互
  • 原文地址:https://www.cnblogs.com/leischen/p/2551494.html
Copyright © 2020-2023  润新知