Hi,
Using your TestClass, here is the code I used :
Please create a sample project with the error,
Thanks.
Using your TestClass, here is the code I used :
<Grid>
<xctk:PropertyGrid x:Name="_propertyGrid" />
</Grid>
public MainWindow()
{
InitializeComponent();
_propertyGrid.SelectedObject = new TestClass()
{
Name = "Testing Name",
SubInfo = new TestSubClass()
{
ExtendedField = "Testing Extended field"
}
};
}
The propertyGrid loads normally without any error. Version used was Toolkit v2.5 under Windows 8.1.Please create a sample project with the error,
Thanks.