Binding Silverlight ComboBox with Enum. Suppose we have Enum like this:
public enum Schedule
{
Day = 1,
Week = 7,
Month = 30,
Year = 365
}
then how are we going to bind it with ComboBox. Here is the code:
// Returns all the Enums
public static T[] GetEnumValues
{
var type = typeof(T);
if (!type.IsEnum)
throw new ArgumentException("Type '" + type.Name + "' is not an enum");
return (from field in type.GetFields()
where field.IsLiteral
select (T)field.GetValue(type)).ToArray();
}
ComboBox cbo = sender as ComboBox;
var enums = GetEnumValues
cbo.ItemsSource = enums;
Happy Coding :)
http://mb-blogs.net/?p=21
ReplyDelete