Back to Devexpress

DataViewBase.ShowFixedTotalSummary Property

wpf-devexpress-dot-xpf-dot-grid-dot-dataviewbase-9c0a6803.md

latest4.1 KB
Original Source

DataViewBase.ShowFixedTotalSummary Property

Gets or sets whether the Fixed Summary Panel is displayed in the grid. This is a dependency property.

Namespace : DevExpress.Xpf.Grid

Assembly : DevExpress.Xpf.Grid.v25.2.Core.dll

NuGet Package : DevExpress.Wpf.Grid.Core

Declaration

csharp
public bool ShowFixedTotalSummary { get; set; }
vb
Public Property ShowFixedTotalSummary As Boolean

Property Value

TypeDescription
Boolean

true to display the Fixed Summary Panel in the grid; otherwise, false.

|

Remarks

Refer to the following help topic for more information: Total Summary.

The following code snippets (auto-collected from DevExpress Examples) contain references to the ShowFixedTotalSummary property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

how-to-bind-wpf-grid-to-data/CS/CodeBehind/EFCore/LocalData/MainWindow.xaml#L10

xml
<dxg:GridControl.View>
    <dxg:TableView ShowFixedTotalSummary="True" />
</dxg:GridControl.View>

wpf-data-grid-implement-crud-operations/CS/CodeBehind/EFCore/PagedAsyncSource/MainWindow.xaml#L23

xml
<dxg:TableView ShowUpdateRowButtons="OnCellEditorOpen" ValidateRow="OnValidateRow"
                   ShowFixedTotalSummary="True" DataSourceRefresh="OnDataSourceRefresh" />
</dxg:GridControl.View>

wpf-data-grid-extend-crud-operations/CS/DetailCollectionEditing/MainWindow.xaml#L22

xml
<dxg:GridControl.View>
    <dxg:TableView RowDoubleClickCommand="{Binding RowDoubleClickCommand, ElementName=EditFormBehavior}" NavigationStyle="Row" ValidateRowDeletionCommand="{Binding ValidateRowDeletionCommand}" DataSourceRefreshCommand="{Binding DataSourceRefreshCommand}" ShowFixedTotalSummary="True" />
</dxg:GridControl.View>

wpf-data-grid-bind-to-pagedasyncsource/CS/PagedAsyncSourceSample/MainWindow.xaml#L35

xml
<dxg:TableView ColumnSortClearMode="Click"
                   ShowFixedTotalSummary="True"/>
</dxg:GridControl.View>

wpf-data-grid-bind-to-infiniteasyncsource/CS/InfiniteAsyncSourceSample/MainWindow.xaml#L39

xml
<dxg:TableView ColumnSortClearMode="Click"
               ShowFixedTotalSummary="True"
               NewItemRowPosition="Top"

See Also

DataViewBase Class

DataViewBase Members

DevExpress.Xpf.Grid Namespace