wpf-devexpress-dot-xpf-dot-grid-dot-dataviewbase-9c0a6803.md
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
public bool ShowFixedTotalSummary { get; set; }
Public Property ShowFixedTotalSummary As Boolean
| Type | Description |
|---|---|
| Boolean |
true to display the Fixed Summary Panel in the grid; otherwise, false.
|
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
<dxg:GridControl.View>
<dxg:TableView ShowFixedTotalSummary="True" />
</dxg:GridControl.View>
wpf-data-grid-implement-crud-operations/CS/CodeBehind/EFCore/PagedAsyncSource/MainWindow.xaml#L23
<dxg:TableView ShowUpdateRowButtons="OnCellEditorOpen" ValidateRow="OnValidateRow"
ShowFixedTotalSummary="True" DataSourceRefresh="OnDataSourceRefresh" />
</dxg:GridControl.View>
wpf-data-grid-extend-crud-operations/CS/DetailCollectionEditing/MainWindow.xaml#L22
<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
<dxg:TableView ColumnSortClearMode="Click"
ShowFixedTotalSummary="True"/>
</dxg:GridControl.View>
wpf-data-grid-bind-to-infiniteasyncsource/CS/InfiniteAsyncSourceSample/MainWindow.xaml#L39
<dxg:TableView ColumnSortClearMode="Click"
ShowFixedTotalSummary="True"
NewItemRowPosition="Top"
See Also