Hi,
This attribute doesn't exists.
But when you create your propertyGrid, you can set the properties you want to display. Make sure to set the AutoGenerateProperties to False. This way, one PropertyGrid will show properties A, B an C, while the other propertyGrid can show properties D, E and F.
This attribute doesn't exists.
But when you create your propertyGrid, you can set the properties you want to display. Make sure to set the AutoGenerateProperties to False. This way, one PropertyGrid will show properties A, B an C, while the other propertyGrid can show properties D, E and F.
<xctk:PropertyGrid x:Name="_propertyGrid"
SelectedObject="{Binding MyObject}"
AutoGenerateProperties="False">
<xctk:PropertyGrid.PropertyDefinitions>
<xctk:PropertyDefinition TargetProperties="FavoriteColor" />
<xctk:PropertyDefinition TargetProperties="PetNames" />
</xctk:PropertyGrid.PropertyDefinitions>
</xctk:PropertyGrid>
<xctk:PropertyGrid x:Name="_propertyGrid2"
SelectedObject="{Binding MyObject}"
AutoGenerateProperties="False">
<xctk:PropertyGrid.PropertyDefinitions>
<xctk:PropertyDefinition TargetProperties="FirstName" />
<xctk:PropertyDefinition TargetProperties="LastName" />
</xctk:PropertyGrid.PropertyDefinitions>
</xctk:PropertyGrid>