Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

CheckedTokenComboBoxStyleSettings Class

Defines the checked token combo box editor appearance and behavior.

Namespace: DevExpress.Xpf.Editors

Assembly: DevExpress.Xpf.Core.v24.2.dll

NuGet Package: DevExpress.Wpf.Core

#Declaration

public class CheckedTokenComboBoxStyleSettings :
    CheckedComboBoxStyleSettings,
    ITokenStyleSettings

#Remarks

A CheckedTokenComboBoxStyleSettings object defines the Checked Token combo box operation mode.

This mode is inspired by modern mail clients and supports multi-selection. Selected values are represented by tokens.

ComboBoxEditStyleSettingsCheckedToken

The following code demonstrates how to switch the combo box operation mode to Checked Token and configure a new token position.

<dxe:ComboBoxEdit>
    <dxe:ComboBoxEdit.StyleSettings>
        <dxe:CheckedTokenComboBoxStyleSettings NewTokenPosition="Far"/>
    </dxe:ComboBoxEdit.StyleSettings>
</dxe:ComboBoxEdit>

Tip

For the complete list of the ComboBoxEdit control operation modes, see ComboBoxEdit operation modes.

Tip

Use the TokenEditorBehavior to control token editing.

The following code snippets (auto-collected from DevExpress Examples) contain references to the CheckedTokenComboBoxStyleSettings class.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

#Inheritance

Show 15 items
Object
DispatcherObject
DependencyObject
Visual
UIElement
FrameworkElement
BaseEditStyleSettings
DevExpress.Xpf.Editors.TextEditStyleSettings
DevExpress.Xpf.Editors.ButtonEditStyleSettings
DevExpress.Xpf.Editors.PopupBaseEditStyleSettings
DevExpress.Xpf.Editors.BaseItemsControlStyleSettings<LookUpEditBase>
DevExpress.Xpf.Editors.BaseLookUpStyleSettings
See Also