I have a component which has a List<T> property. The class in the list has each of its properties decorated with a description attribute but the descriptions do not show up in the Collection Editor
In the IDE designer is there a way to turn on the Description panel in the standard Collection Editor? Will I need to inherit my own type editor from CollectionEditor to achieve this?
Basically, you’d either need to create your own editor, or subclass
CollectionEditorand mess with the form. The latter is easier – but not necessarily pretty…The following uses the regular collection editor form, but simply scans it for
PropertyGridcontrols, enablingHelpVisible.To show this in use (note the use of
EditorAttribute):