Skip to main content
All docs
V25.1
  • ON

    FilteringUIContext.ApplyFilterCommand Property

    Returns a command that applies filters to the data control.

    Namespace: DevExpress.Maui.Core

    Assembly: DevExpress.Maui.Core.dll

    NuGet Package: DevExpress.Maui.Core

    Declaration

    public ICommand ApplyFilterCommand { get; }

    Property Value

    Type Description
    ICommand

    A command that exposes the ICommand interface.

    Remarks

    The following example applies filters when a user taps the Apply toolbar item:

    <ContentPage.ToolbarItems>
        <ToolbarItem Command="{Binding ApplyFilterCommand}" Text="Apply"/>
    </ContentPage.ToolbarItems>
    
    See Also