
The GroupFooterSummaryContentStyle property specifies the style of type instances' properties, resources, and event handlers and shares them between instances of the System.Windows.Controls.ContentControl type.
Target Type: DevExpress.Xpf.Core.DataContentPresenter
The following code snippet demonstrates how to use the GroupFooterSummaryContentStyle property:
csharp |
<dxg:GridControl>
<dxg:TableView ShowGroupFooters="True">
<dxg:TableView.GroupFooterSummaryContentStyle>
<Style TargetType="dx:DataContentPresenter">
<Setter Property="TextBlock.FontStyle" Value="Italic"/>
</Style>
</dxg:TableView.GroupFooterSummaryContentStyle>
</dxg:TableView>
</dxg:GridControl>
|
See the Appearance Customization topic for more information.