Skip to main content

ListView.TableViewStyle Property

Gets or sets the style applied to the TableView object used by the view. This is a dependency property.

Namespace: DevExpress.Xpf.Scheduling

Assembly: DevExpress.Xpf.Scheduling.v23.2.dll

NuGet Package: DevExpress.Wpf.Scheduling

Declaration

public Style TableViewStyle { get; set; }

Property Value

Type Description
Style

A Style object that represents a style to be applied to the grid control used by the view.

Remarks

Target Type: TableView.

The code snippet below illustrates a custom style that displays the total summary.

<dxsch:ListView x:Name="listView" >
    <dxsch:ListView.TableViewStyle>
        <Style TargetType="dxg:TableView">
            <Setter Property="TotalSummaryPosition" Value="Bottom"/>
        </Style>
    </dxsch:ListView.TableViewStyle>
</dxsch:ListView>
See Also