FilteringUIContext.ApplyFilterCommand Property
In This Article
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
C#
public ICommand ApplyFilterCommand { get; }
#Property Value
Type | Description |
---|---|
ICommand | A command that exposes the |
#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