Skip to main content

Selection

  • 3 minutes to read

End-users can select a single accordion item at a time by default:

AccordionSelection

Use the AccordionControl.SelectedItem property to get or set the selected accordion item.

Restrict Item Selection

Disable Item Selection

Set the AccordionControl.SelectionMode property to SelectionMode.None to prohibit item selection.

Restrict Selection For a Single Item

Set the accordion item’s AccordionItem.CanSelect property to false to prevent this item from being selected.

Restrict Selection Dynamically

To dynamically prevent accordion items from being selected, handle the AccordionControl.CanSelectItem event.

In the event handler, use the CanSelectItemEventArgs.Item property to get the processed item. To prevent this item from being selected, set the CanSelectItemEventArgs.CanSelect property to false.

In Bound Mode

In bound mode, the CanSelectItemEventArgs.Item property returns a bound data object.

The code sample below demonstrates how to prevent an item with the “Application Settings” caption from being selected.

<Window ...
        xmlns:dx="http://schemas.devexpress.com/winfx/2008/xaml/core"
        xmlns:dxa="http://schemas.devexpress.com/winfx/2008/xaml/accordion">
    <Grid>
        <dxa:AccordionControl
            ItemsSource="{Binding AppMenu.MenuItems}"
            DisplayMemberPath="Caption"
            ChildrenPath="SubItems"
            CanSelectItem="AccordionControl_CanSelectItem" />
    </Grid>
</Window>
private void AccordionControl_CanSelectItem(object sender, DevExpress.Xpf.Accordion.CanSelectItemEventArgs e) {
    MenuItem item = (MenuItem)e.Item;
    if (item.Caption == "Application Settings") {
        e.CanSelect = false;
    }
}

In Unbound Mode

In unbound mode, the CanSelectItemEventArgs.Item property returns an AccordionItem.

The code sample below demonstrates how to prevent an item with the “Application Settings” header from being selected.

<Window ...
        xmlns:dx="http://schemas.devexpress.com/winfx/2008/xaml/core"
        xmlns:dxa="http://schemas.devexpress.com/winfx/2008/xaml/accordion">
    <Grid>
        <dxa:AccordionControl
            CanSelectItem="AccordionControl_CanSelectItem" >
            <dxa:AccordionItem Header="Start Page"/>
            <dxa:AccordionItem Header="Preferences">
                <dxa:AccordionItem Header="Account Info"/>
                <dxa:AccordionItem Header="Application Settings"/>
            </dxa:AccordionItem>
            <dxa:AccordionItem Header="About"/>
        </dxa:AccordionControl>
    </Grid>
</Window>
using DevExpress.Xpf.Accordion;
...

private void AccordionControl_CanSelectItem(object sender, CanSelectItemEventArgs e) {
    AccordionItem item = (AccordionItem)e.Item;
    if (item.Header.ToString() == "Application Settings") {
        e.CanSelect = false;
    }
}
...

Customize Item Selection

You can specify accordion item types an end-user can select.

Set the AccordionControl.SelectionUnit property to:

The following code sample demonstrates an AccordionControl that allows users to select subitems only:

<dxa:AccordionControl SelectionUnit="SubItem">
   <dxa:AccordionItem Header="Root Item" Glyph="{dx:DXImage Image=Image_32x32.png}"/>
   <dxa:AccordionItem Header="Root Item" Glyph="{dx:DXImage Image=Map_32x32.png}">
      <dxa:AccordionItem Header="SubItem" Glyph="{dx:DXImage Image=Map_16x16.png}"/>
      <dxa:AccordionItem Header="SubItem" Glyph="{dx:DXImage Image=Map_16x16.png}"/>
   </dxa:AccordionItem>
</dxa:AccordionControl>

The image below shows the result:

AccordionSelectionUnit

Customize Item Highlighting

Selectable and expandable accordion items are highlighted when you move the mouse pointer over them. Use the following properties to change this behavior:

Property Description
AccordionItem.HighlightOnHover Gets or sets whether the current item is highlighted when an end-user moves the mouse cursor over it.
AccordionItem.HighlightOnPress Gets or sets whether the current item is highlighted when an end-user clicks and holds the left mouse button.

The following code sample shows an accordion item that you can highlight but not select:

<dxa:AccordionControl SelectionMode="None">
   <dxa:AccordionItem Header="Root Item" Glyph="{dx:DXImage Image=Image_32x32.png}"/>
   <dxa:AccordionItem Header="Root Item" Glyph="{dx:DXImage Image=Map_32x32.png}">
      <dxa:AccordionItem Header="SubItem" Glyph="{dx:DXImage Image=Map_16x16.png}" HighlightOnHover="True" />
      <dxa:AccordionItem Header="SubItem" Glyph="{dx:DXImage Image=Map_16x16.png}" />
   </dxa:AccordionItem>
</dxa:AccordionControl>

The image below shows the result:

AccordionSelectionHighlight