-3

如何通过绑定列出类的所有属性名称

<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 

感激的。

4

3 回答 3

2

听起来您需要使用反射,如此处所示

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);
}
于 2012-04-25T21:57:07.590 回答
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;

容易理解!

于 2012-04-25T22:05:26.823 回答
0

查看 MVVM 模型(例如创建一个新的全景 / 透视 / 数据绑定示例应用程序),这是在尝试编写新代码时减少最多时间的模型,同时保持非常干净。

祝你好运 ;)

于 2012-04-26T14:37:54.620 回答