Skip to main content

SearchTokenLookUpEditStyleSettings Class

Defines the SearchTokenLookUpEdit‘s appearance and behavior.

Namespace: DevExpress.Xpf.Grid.LookUp

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

NuGet Package: DevExpress.Wpf.Grid.Core

Declaration

public class SearchTokenLookUpEditStyleSettings :
    SearchLookUpEditStyleSettings,
    ITokenStyleSettings

Remarks

The SearchToken mode supports multiple value selection and the Search feature. Selected values are displayed as tokens.

SearchTokenLookUpEdit

The following code sample switches the lookup editor operation mode to SearchToken:

<dxg:LookUpEdit ItemsSource="{Binding Customers}"
                DisplayMember="ProductName"
                ValueMember="ID">
    <dxg:LookUpEdit.StyleSettings>
        <dxg:SearchTokenLookUpEditStyleSettings/>
    </dxg:LookUpEdit.StyleSettings>
</dxg:LookUpEdit>

View Example

Tip

For the complete list of LookUpEdit control operation modes, refer to the following section: LookUpEdit Operation Modes.

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