如何通过绑定列出类的所有属性名称
<ListBox>
<TextBlock Name="{Binding WHAAAAT???!}" />
</ListBox>
类别:
public class DaysOfWeek
{
public bool Monday {get; set;}
public bool Tuesday { get; set; }
public bool Wednesday { get; set; }
public bool Thursday { get; set; }
public bool Friday { get; set; }
public bool Saturday { get; set; }
public bool Sunday { get; set; }
}
我想将此内容放在列表框中。 请帮帮我。
Monday
Tuesday
Wednesday
Thursday
Friday
Saturday
Sunday
荷。
答案 0 :(得分:2)
听起来你需要使用here
所示的反射using System.Reflection; // reflection namespace
// get all public static properties of MyClass type
PropertyInfo[] propertyInfos;
propertyInfos = typeof(MyClass).GetProperties(BindingFlags.Public |
BindingFlags.Static);
// sort properties by name
Array.Sort(propertyInfos,
delegate(PropertyInfo propertyInfo1, PropertyInfo propertyInfo2)
{ return propertyInfo1.Name.CompareTo(propertyInfo2.Name); });
// write property names
foreach (PropertyInfo propertyInfo in propertyInfos)
{
Console.WriteLine(propertyInfo.Name);
}
答案 1 :(得分:1)
我的解决方案:
Classes.DaysOfWeek _DaysOfWeek;
_DaysOfWeek = new Classes.DaysOfWeek();
var listProp = _DaysOfWeek.GetType().GetProperties().ToList();
List<String> newList = new List<String>{};
foreach(var item in listProp){
newList.Add(item.Name);
}
listBox_Days.ItemsSource = newList;
易于理解!
答案 2 :(得分:0)
查看MVVM模型(通过示例创建一个新的Panorama / Pivot / Databound示例应用程序) 这个模型在尝试编写新代码时会减少最多的时间, 并保持非常干净。
祝你好运;)