Skip to main content
A newer version of this page is available. .

FilterEditorCommands.ApplyFilter Property

Applies the filter criteria to the source control the FilterEditorControl is bound to.

Namespace: DevExpress.Xpf.Core.FilteringUI

Assembly: DevExpress.Xpf.Grid.v20.2.dll

NuGet Packages: DevExpress.WindowsDesktop.Wpf.Grid.Core, DevExpress.Wpf.Grid.Core

Declaration

public ICommand ApplyFilter { get; }

Property Value

Type Description
ICommand

A command that implements the ICommand.

Remarks

Corresponding method: FilterEditorControl.ApplyFilter

Example

The code sample below shows the FilterEditorControl bound to the GridControl. The ApplyFilterButton with the FilterEditorCommands.ApplyFilter command allows you to apply filter criteria specified in the FilterEditorControl to the GridControl.

<dxfui:FilterEditorControl x:Name="filterEditor" Context="{Binding Path=FilteringContext, ElementName=filterGrid}"/>
<!-- ... -->
<Button Name="ApplyFilterButton" Content="Apply Filter" Command="{Binding Commands.ApplyFilter, ElementName=filterEditor}" />
<!-- ... -->
<dxg:GridControl x:Name="filterGrid" ... />
See Also