Based on discussion https://wpftoolkit.codeplex.com/discussions/653415
The PropertyGrid Reset Value is not available in the Community edition. It should.
Comments: ** Comment from web user: BoucherS **
The PropertyGrid Reset Value is not available in the Community edition. It should.
Comments: ** Comment from web user: BoucherS **
This will be fixed in v3.1.
In the meantime, you can go in file Xceed.Wpf.Toolkit/PropertyGrid/Implementation/PropertyGrid.cs,
in method UpdateContainerHelper()
and add the 2 following checks :
a)
if( SelectedObject != null )
{
_containerHelper = new ObjectContainerHelper( this, SelectedObject );
( ( ObjectContainerHelper )_containerHelper ).GenerateProperties();
}
b)
if( _containerHelper != null )
{
_containerHelper.ChildrenItemsControl = childrenItemsControl;
}
in method EndInit()
add the following check :
c)
if( _containerHelper != null )
{
_containerHelper.OnEndInit();
}