Hello. When I define a custom property, its description does not appear in the description panel of the propertygrid control.
Is there a way to achieve this?
Sample code:
var p = new Syncfusion.Windows.PropertyGrid.PropertyGridItem();
pgrid.Items.Add(new Syncfusion.Windows.PropertyGrid.PropertyGridItem()
{
PropertyName = "url",
Description = "url"
});
The description "url" does not appear in the propertygrid (DescriptionPanelVisibility="Visible" and AutoGenerateItems="False").
Thanks in advance.