私は C#/WPF の初心者で、Xceed PropertyGrid を使用しようとしています。彼らのサイトで彼らは例を示しています:
<xctk:PropertyGrid x:Name="_propertyGrid" Width="450" Margin="10"
AutoGenerateProperties="False">
<!-- Only the following properties will be displayed in the PropertyGrid -->
<xctk:PropertyGrid.PropertyDefinitions>
<xctk:PropertyDefinition Name="FirstName" />
<xctk:PropertyDefinition Name="FavoriteColor" />
<xctk:PropertyDefinition Name="PetNames" />
</xctk:PropertyGrid.PropertyDefinitions>
</xctk:PropertyGrid>
xamlにプラグインしました。PropertyGrid ビューが表示されますが、プロパティ定義が表示されません。基本的な何かが欠けているに違いないと思いますか?コード ビハインドに何か追加する必要がありますか?