true if the PropertyGrid will generate all properties for a given object; false otherwise. By default, true.
Remarks
If this property is set to false, you must add PropertyDefinition instances to PropertyDefinitions for each of the properties you want generated for display.
The following shows how to create a PropertyGrid that doesn't not automatically generate all the properties for a given object by setting the AutoGenerateProperties property to False and providing a collection of PropertyDefinitions of the properties you would like to show.
<xctk:PropertyGridx:Name="_propertyGrid"Width="450"Margin="10"AutoGenerateProperties="False"><!-- Only the following properties will be displayed in the PropertyGrid --><xctk:PropertyGrid.PropertyDefinitions><xctk:PropertyDefinitionName="FirstName"/><xctk:PropertyDefinitionName="FavoriteColor"/><xctk:PropertyDefinitionName="PetNames"/></xctk:PropertyGrid.PropertyDefinitions></xctk:PropertyGrid>
Requirements
Target Platforms: Windows 11, Windows 10, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2