我的问题与我在这里问的问题基本相同。添加using Xceed.Wpf.Toolkit.PropertyGrid.Attributes
指令解决了这个问题。
这一次,编译器不喜欢[Category("Shipping")]
装饰。
[Category("Shipping")]
public string ShipAddress { get; set; }
当我遇到这样的障碍时,如何推断或确定需要包含哪些命名空间?
以下是我已经包含的 using 指令:
using Xceed.Wpf.Toolkit.PropertyGrid;
using Xceed.Wpf.Toolkit.PropertyGrid.Editors;
using Xceed.Wpf.Toolkit.PropertyGrid.Commands;
using Xceed.Wpf.Toolkit.PropertyGrid.Converters;
using Xceed.Wpf.Toolkit.PropertyGrid.Attributes;
xaml 是这样的:
<xctk:PropertyGrid AutoGenerateProperties="True" Name="XPG1" IsCategorized="True" />