In property grids, when you select an item it shows you the [description("")] helptext in the box at the bottom.
When you are using the categorized view of the property grid, you also have the option to select the Category names themselves
My Question is, is there a way to provide a description to the selected category that displays the same way description tags display for properties? E.g. when you select input you might see
Input
Items in this category are related to Input
Also, in case it's relevant, I'm just using a standard property grid populated by a class containing properties tagged with description and category
public class Foo
{
[Category("Foo Category")]
[Description("Foo Description help text")]
public string fooProperty { get; set; } = "";
}

