Skip to main content

CheckedComboBoxStyleSettings.SelectAllItemText Property

Gets or sets the text displayed within the Select All item. This is a dependency property.

Namespace: DevExpress.Xpf.Editors

Assembly: DevExpress.Xpf.Core.v25.1.dll

NuGet Package: DevExpress.Wpf.Core

Declaration

public string SelectAllItemText { get; set; }

Property Value

Type Description
String

The Select All item text.

Remarks

Enable the ShowSelectAllItem option to display the Select All item. Use the SelectAllItemText property to rename the Select All item.

Select All - WPF Checked Combobox Editor, DevExpress

The following code snippet displays and renames the Select All item:

 <dxe:ComboBoxEdit>
    <dxe:ComboBoxEdit.StyleSettings>
        <dxe:CheckedComboBoxStyleSettings ShowSelectAllItem="True" SelectAllItemText="(All)"/>
    </dxe:ComboBoxEdit.StyleSettings>
    <dxe:ComboBoxEditItem Content="Item 1"/>
    <dxe:ComboBoxEditItem Content="Item 2"/>
    <dxe:ComboBoxEditItem Content="Item 3"/>
</dxe:ComboBoxEdit>

Important

If the ShowCustomItems property is set to false, the CheckedComboBox does not display the Select All item regardless of the ShowSelectAllItem setting.

See Also