wpf-devexpress-dot-xpf-dot-propertygrid-dot-propertygridcontrol-48f689c7.md
Gets or sets the style applied to property descriptions within the grid. This is a dependency property.
Namespace : DevExpress.Xpf.PropertyGrid
Assembly : DevExpress.Xpf.PropertyGrid.v25.2.dll
NuGet Package : DevExpress.Wpf.PropertyGrid
public Style DescriptionContainerStyle { get; set; }
Public Property DescriptionContainerStyle As Style
| Type | Description |
|---|---|
| Style |
A Style object that specifies the style applied to property descriptions.
|
The style applied to all property descriptions is specified by the DescriptionContainerStyle property. Individual properties provide the PropertyDefinitionBase.DescriptionContainerStyle property that, if specified, overrides the style specified by the grid. This allows you to provide a custom appearance of their descriptions.
If you have more than one style that can be used to render property descriptions, you can implement custom logic to choose the required style. To do this, use the PropertyGridControl.DescriptionContainerStyleSelector property.
To learn more, see Appearance Customization.
See Also