Back to Devexpress

PredefinedFilterCheckedChipGroupItem Class

maui-devexpress-dot-maui-dot-editors-a29a1cf2.md

latest4.9 KB
Original Source

PredefinedFilterCheckedChipGroupItem Class

A filter item that allows you to select multiple options from a set of predefined chips.

Namespace : DevExpress.Maui.Editors

Assembly : DevExpress.Maui.Editors.dll

NuGet Package : DevExpress.Maui.Editors

Declaration

csharp
[ContentProperty("Filters")]
[DXLicenseMAUI]
public class PredefinedFilterCheckedChipGroupItem :
    FilterCheckedChipGroupItemBase

Remarks

The following code sample specifies the PredefinedFilterCheckedChipGroupItem with three PredefinedFilter objects:

xaml
<ContentPage ...
             xmlns:dxe="clr-namespace:DevExpress.Maui.Editors;assembly=DevExpress.Maui.Editors">
             <!--...-->
                  <dxe:PredefinedFilterCheckedChipGroupItem Text="Price" FieldName="Price" ShowValueCounts="true">
                      <dx:PredefinedFilter Text="$0 - $500" FilterExpression="?p &lt; 500"/>
                      <dx:PredefinedFilter Text="$500 - $2000" FilterExpression="?p >= 500 AND ?p &lt; 2000"/>
                      <dx:PredefinedFilter Text="$2000+" FilterExpression="?p >= 2000"/>
                  </dxe:PredefinedFilterCheckedChipGroupItem>
             <!--...-->
</ContentPage>

For more information on how to implement a Filtering UI for DataGridView and DXCollectionView, refer to the following sections:

Implements

Show 17 items

INotifyPropertyChanged

IAnimatable

Microsoft.Maui.Controls.ITabStopElement

IViewController

IVisualElementController

IElementController

IGestureController

IGestureRecognizers

IPropertyMapperView

IHotReloadableView

IView

IReplaceableView

ILayout

ILayoutController

Microsoft.Maui.IFrameworkElement

ITransform

IContainer

Inheritance

Show 13 items

System.Object BindableObject Element NavigableElement VisualElement View Layout DevExpress.Maui.Editors.Internal.BaseFormItem FormItemBase FilterFormItemBase FilterChipGroupItemBase FilterCheckedChipGroupItemBase PredefinedFilterCheckedChipGroupItem

Extension Methods

Yield<PredefinedFilterCheckedChipGroupItem>()

YieldIfNotNull<PredefinedFilterCheckedChipGroupItem>()

See Also

PredefinedFilterCheckedChipGroupItem Members

DevExpress.Maui.Editors Namespace