用于组织CustomObject编辑器的控件。
同样是来自WinForms的PropertyGrid
public Goods
{
public string Caption { get; }
public string Name { get; set; }
public bool Enabled { get; set; }
public DateTime Date { get; set; }
public Reference ReferenceShort { get; set; }
public Reference ReferenceLong { get; set; }
}
public Reference
{
public Guid Id { get; }
public string Name { get; set; }
}
必须:
a)文字(标题)
c)radiobutton(启用)b)文本编辑器(名称)
c)日期选择器(日期)
d)组合框(ReferenceShort)
e)文本编辑器+按钮(ReferenceLong)
查看模式(当编辑器列为文本时)和编辑模式(当编辑器列为特定编辑器时)
允许自定义任何项目
答案 0 :(得分:2)
这里有一个PropertyGrid示例控件: https://xamltips.wordpress.com/2016/02/12/displaying-details-property-grid-in-xaml/