List of PropertyGrid Attributes
If PropertyGrid is from Xceed Extended.Wpf.Toolkit it also count on System.ComponentModel.DataAnnotations.Display attribute.
[Display(Name="", Description="", Order=1)]
With it you can provide:
- Name overrides [DisplayName(...)]
- Description possible overrides [Description(...)]
- Order in the list (unique, I do not know other ways to provide order)
- there are other few (GroupName, Prompt, ShortName, ResourceType, AutoGenerateField, AutoGenerateFilter), but I did not test them and can say ho they works in property grid...
i would also add
RefreshPropertiesAttribute
NotifyParentPropertyAttribute
The attributes that impact PropertyGrid are indirect: the interesting code is the TypeDescriptor which provides the PropertyDescriptor implementation. However, this van be overruled by ICustomTypeDescriptor or TypeDescriptionProvider.
However, if we assume the default rules, the key attributes in play are:
[DisplayName(...)]
[Description(...)]
[Category(...)]
[TypeConverter(...)]
[ReadOnly(...)]
[Browsable(...)]
[DefaultValue(...)]
[Editor(...)]
Some other things are detected by patterns such as the presence of a ShouldSerialize{name} or Reset{name} method.