Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

PivotGridControl.FilteringPanelStyle Property

Gets or sets the style applied to the Filter Panel. This is a dependency property.

Namespace: DevExpress.Xpf.PivotGrid

Assembly: DevExpress.Xpf.PivotGrid.v24.2.dll

NuGet Package: DevExpress.Wpf.PivotGrid

#Declaration

public Style FilteringPanelStyle { get; set; }

#Property Value

Type Description
Style

The Filter Panel‘s style.

#Remarks

Target Type: FilteringPanelControl

#Example

<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