How do I bind an enum to my listbox?

2020-06-19 03:54发布

I have a Silverlight (WP7) project and would like to bind an enum to a listbox. This is an enum with custom values, sitting in a class library. How do I do this?

3条回答
Anthone
2楼-- · 2020-06-19 04:02

Convert the enum to a list (or similar) - as per How do I convert an enum to a list in C#?

then bind to the converted list.

查看更多
唯我独甜
4楼-- · 2020-06-19 04:20

In Silverlight(WP7), Enum.GetNames() method is not available. You can use the following

public class Enum<T>
{
    public static IEnumerable<string> GetNames()
    {
        var type = typeof(T);
        if (!type.IsEnum)
            throw new ArgumentException("Type '" + type.Name + "' is not an enum");

        return (
          from field in type.GetFields(System.Reflection.BindingFlags.Public | System.Reflection.BindingFlags.Static)
          where field.IsLiteral
          select field.Name).ToList<string>();
    }
}

The static method will returns enumerable string collection. You can bind that to a listbox's itemssource. Like

this.listBox1.ItemSource = Enum<Colors>.GetNames();
查看更多
登录 后发表回答