wpf-devexpress-dot-xpf-dot-pivotgrid-dot-pivotgridcontrol-70736c03.md
Gets or sets the style applied to the Filter Panel. This is a dependency property.
Namespace : DevExpress.Xpf.PivotGrid
Assembly : DevExpress.Xpf.PivotGrid.v25.2.dll
NuGet Package : DevExpress.Wpf.PivotGrid
public Style FilteringPanelStyle { get; set; }
Public Property FilteringPanelStyle As Style
| Type | Description |
|---|---|
| Style |
The Filter Panel‘s style.
|
Target Type: FilteringPanelControl
<Window ...
xmlns:dxpg="http://schemas.devexpress.com/winfx/2008/xaml/pivotgrid"
xmlns:dxfui="http://schemas.devexpress.com/winfx/2008/xaml/core/filteringui">
<dxpg:PivotGridControl ...>
<dxpg:PivotGridControl.FilteringPanelStyle>
<Style TargetType="dxfui:FilteringPanelControl">
<Setter Property="Background" Value="PaleVioletRed"/>
<Setter Property="AllowDeleteColumnFilters" Value="False"/>
<Setter Property="AllowClearFilter" Value="False"/>
<Setter Property="AllowEditFilter" Value="False"/>
<Setter Property="AllowMRU" Value="False"/>
<Setter Property="AllowDisableFilter" Value="False"/>
<Setter Property="Height" Value="60"/>
<Setter Property="HorizontalAlignment" Value="Right"/>
</Style>
</dxpg:PivotGridControl.FilteringPanelStyle>
</dxpg:PivotGridControl>
</Window>
See Also