ListView.ColumnStyleStatus Property
Gets or sets the style of the Status column in the List View. This is a dependency property.
Namespace: DevExpress.Xpf.Scheduling
Assembly: DevExpress.Xpf.Scheduling.v24.1.dll
NuGet Package: DevExpress.Wpf.Scheduling
Declaration
Property Value
Type | Description |
---|---|
Style | A Style object that represents a style to be applied to the Status column. |
Remarks
Target Type: GridColumn
The code snippet below illustrates a custom style that changes the header text.
<dxsch:ListView x:Name="listView">
<dxsch:ListView.ColumnStyleStatus>
<Style BasedOn="{StaticResource {dxscht:ListViewGridThemeKey ResourceKey=GridColumn_Status}}" TargetType="dxg:GridColumn">
<Setter Property="Header" Value="Custom Header"/>
</Style>
</dxsch:ListView.ColumnStyleStatus>
</dxsch:ListView>
See Also