Skip to main content

CheckedListBoxEditStyleSettings.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.v23.2.dll

NuGet Package: DevExpress.Wpf.Core

Declaration

public string SelectAllItemText { get; set; }

Property Value

Type Description
String

The Select All item text.

Remarks

ListBoxEdit can display the Select All item above its other items. When an end-user clicks the Select All item, all the editor’s items are selected.

Use the ShowSelectAllItem property to control the availability of the Select All item in the list box. The SelectAllItemText property allows you to change the default Select All item’s text.

The image below illustrates the Select All item with the default text.

The code sample below demonstrates how to enable the Select All item and change its default text.

<dxe:ListBoxEdit>
    <dxe:ListBoxEdit.StyleSettings>
        <dxe:CheckedListBoxEditStyleSettings ShowSelectAllItem="True" SelectAllItemText="(All)"/>
    </dxe:ListBoxEdit.StyleSettings>
    <dxe:ListBoxEditItem Content="Item 1"/>
    <dxe:ListBoxEditItem Content="Item 2"/>
    <dxe:ListBoxEditItem Content="Item 3"/>
</dxe:ListBoxEdit>
See Also