枚举描述值到下拉列表

时间:2012-05-08 19:34:20

标签: c# enums

我是C#的新手,我有一个问题,

我有一个类似

的枚举
   public enum
        {
    [Description("1,2,3")]
    123,
    [Description("3,4,5")]
    345,
    [Description("6,7,8 ")]
    678,
       }

现在我希望enum描述绑定到下拉列表..有人可以帮助我..

提前感谢!

PS:如果我不清楚,我很抱歉。让我知道我是否需要更具体

3 个答案:

答案 0 :(得分:9)

public static class EnumExtensionMethods
{
    public static string GetDescription(this Enum enumValue)
    {
        object[] attr = enumValue.GetType().GetField(enumValue.ToString())
            .GetCustomAttributes(typeof (DescriptionAttribute), false);

        return attr.Length > 0 
           ? ((DescriptionAttribute) attr[0]).Description 
           : enumValue.ToString();            
    }

    public static T ParseEnum<T>(this string stringVal)
    {
        return (T) Enum.Parse(typeof (T), stringVal);
    }
}

//Usage with an ASP.NET DropDownList
foreach(MyEnum value in Enum.GetValues<MyEnum>())
   myDDL.Items.Add(New ListItem(value.GetDescription(), value.ToString())
...
var selectedEnumValue = myDDL.SelectedItem.Value.ParseEnum<MyEnum>()

//Usage with a WinForms ComboBox
foreach(MyEnum value in Enum.GetValues<MyEnum>())
   myComboBox.Items.Add(new KeyValuePair<string, MyEnum>(value.GetDescription(), value));

myComboBox.DisplayMember = "Key";
myComboBox.ValueMember = "Value";
...
var selectedEnumValue = myComboBox.SelectedItem.Value;

对于我来说,这两种扩展方法对于我来说是非常宝贵的,可以用于5年和两个不同的工作,完全符合您的要求。

答案 1 :(得分:3)

这就是你写它的方式:

public enum Test
{
  [Description("1,2,3")]
  a = 123,
  [Description("3,4,5")]
  b = 345,
  [Description("6,7,8")]
  c = 678
}

//Get attributes from the enum
    var items = 
       typeof(Test).GetEnumNames()
        .Select (x => typeof(Test).GetMember(x)[0].GetCustomAttributes(
           typeof(DescriptionAttribute), false))
        .SelectMany(x => 
           x.Select (y => new ListItem(((DescriptionAttribute)y).Description)))

//Add items to ddl
    foreach(var item in items)
       ddl.Items.Add(item);

答案 2 :(得分:0)

您可以构建一个包装器类,在每个成员上查找DescriptionAttribute并显示它。然后绑定到包装器实例。像这样:

Get the Enum<T> value Description