Hi,
When we display the expandable objects in the propertygrid the fully qualified name of the expandable object is visible as value. Is there a way to hide the same
eg: In the below scenario when we bind object of type DeviceConfiguration to selectedobject for the property Common the value displayed is MyCompany.Sample.App.Common.
Is there a way to hide the fully qualified name and yet allow the object to be expandable?
namespace MyCompany.Sample.App
{
public class DeviceConfiguration
public CommonDetail Common { get; set; }
}
public class CommonDetail
}
When we display the expandable objects in the propertygrid the fully qualified name of the expandable object is visible as value. Is there a way to hide the same
eg: In the below scenario when we bind object of type DeviceConfiguration to selectedobject for the property Common the value displayed is MyCompany.Sample.App.Common.
Is there a way to hide the fully qualified name and yet allow the object to be expandable?
namespace MyCompany.Sample.App
{
public class DeviceConfiguration
{
[ExpandableObject]public CommonDetail Common { get; set; }
}
public class CommonDetail
{
}}