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

RadioListFilterElement Class

A radio list filter element that allows a user to select one filter value from a set.

Namespace: DevExpress.Xpf.Core.FilteringUI

Assembly: DevExpress.Xpf.Grid.v19.1.dll

Declaration

public class RadioListFilterElement :
    FilterElement

Remarks

Tip

Topic: Filter Elements

Overview

Tip

Demo: Radio List

Requires a WPF Subscription. Download

The image below shows a radio list filter element:

<dxg:GridControl x:Name="grid" ... />
<!-- ... -->
<dxfui:RadioListFilterElement Context="{Binding FilteringContext, ElementName=grid}" FieldName="Doors" /> 

FilterModelTemplate Property

Use the FilterElement.FilterModelTemplate property to specify the filter element template.

Tip

Data Context (Binding Source): RadioListFilterModel

ShowCounts Property

The RadioListFilterElement shows the record count next to filter values:

Set the FilterElement.ShowCounts property to false to not show counts.

See Also