
public enum ExampleEnum
{
Value1,
Value2,
Value3,
}
public class Source
{
public ExampleEnum A { get; set; }
public ExampleEnum A_1 { get; set; }
public ExampleEnum A_2 { get; set; }
}
If class is defined as above and bind an instance of class to the propertygrid, is it possible that A is the root and A_1, A_2 are children of A and are Expandable?
In the propertygrid, A_1 and A_2 should look like children of property A, and when A is collapsed, A_1 and A_2 should be hidden.
https://www.actiprosoftware.com/docs/controls/wpf/api/actiprosoftware.windows.controls.grids.propertydata.idatamodel#actiprosoftware_windows_controls_grids_propertydata_idatamodel_children
I tried adding it to Children in the DataFactory, but it didn't show up the way I wanted it to.
I would like to be able to set the parent, child relationship when configuring the model in DataFactory.
[Modified 7 months ago]