wpf-devexpress-dot-xpf-dot-grid-dot-dataviewbase-e61d5468.md
Gets or sets the style applied to printed summary items in the Fixed Summary Panel. This is a dependency property.
Namespace : DevExpress.Xpf.Grid
Assembly : DevExpress.Xpf.Grid.v25.2.Core.dll
NuGet Package : DevExpress.Wpf.Grid.Core
public Style PrintFixedTotalSummaryStyle { get; set; }
Public Property PrintFixedTotalSummaryStyle As Style
| Type | Description |
|---|---|
| Style |
The style applied to printed summary items in the Fixed Summary Panel.
|
Target Type : TextEdit
<Window xmlns:dxg="http://schemas.devexpress.com/winfx/2008/xaml/grid"
xmlns:dxgt="http://schemas.devexpress.com/winfx/2008/xaml/grid/themekeys"
xmlns:dxe="http://schemas.devexpress.com/winfx/2008/xaml/editors">
<Window.Resources>
<Style x:Key="customPrintFixedTotalSummaryStyle"
BasedOn="{StaticResource {dxgt:TableViewThemeKey ResourceKey=DefaultPrintFixedTotalSummaryStyle}}"
TargetType="dxe:TextEdit">
<Setter Property="HorizontalContentAlignment" Value="Center" />
<Setter Property="BorderBrush" Value="White" />
<Setter Property="Background" Value="White"/>
<Setter Property="BorderThickness" Value="1" />
</Style>
</Window.Resources>
<dxg:GridControl ...>
...
<dxg:GridControl.View>
<dxg:TreeListView ShowFixedTotalSummary="True"
PrintFixedTotalSummaryStyle="{StaticResource customPrintFixedTotalSummaryStyle}"
.../>
</dxg:GridControl.View>
</dxg:GridControl>
</Window>
Refer to the following topics for more information on how to print data:
See Also