zoukankan      html  css  js  c++  java
  • 在WPF中如何将Enum 绑定到 集合控件

    第一种,通过绑定转换器:

    public sealed class EnumToNamesConverter : IValueConverter  {    object IValueConverter.Convert(object value, Type targetType, object parameter, CultureInfo culture)    {      return Enum.GetNames(value.GetType());    }      object IValueConverter.ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)    {      throw New NotSupportedException()    }  } 

     

    XAML

    <local:EnumToNamesConverter x:Key="EnumToNamesConverter" />

     

    <ComboBox ItemsSource="{Binding                          Source={x:Type local:CompassHeading},                          Converter={StaticResource EnumToNamesConverter}}" /> 

    第二种,经典呀!通过继承MarkupExtension

     

    [MarkupExtensionReturnType(typeof(object[]))]  public class EnumValuesExtension : MarkupExtension  {      public EnumValuesExtension()      {      }        public EnumValuesExtension(Type enumType)      {          this.EnumType = enumType;      }        [ConstructorArgument("enumType")]      public Type EnumType { get; set; }        public override object ProvideValue(IServiceProvider serviceProvider)      {          if (this.EnumType == null)              throw new ArgumentException("The enum type is not set");          return Enum.GetValues(this.EnumType);      }  } 

    XAML

    <ComboBox ItemsSource="{local:EnumValues local:EmployeeType}"/> 

  • 相关阅读:
    汉堡博客
    复利计算——结对1.0
    《构建之法》第4章读后感
    Compound Interest Calculator4.0
    实验一 命令解释程序的编写
    Compound Interest Calculator3.0续
    1203正规式转换为有穷自动机
    优缺点评价
    语文文法
    词法分析实验总结
  • 原文地址:https://www.cnblogs.com/syqun/p/enum.html
Copyright © 2011-2022 走看看