Skip to main content

ListBoxEdit Class

Represents a list box.

Namespace: DevExpress.Xpf.Editors

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

#Declaration

[DataAccessMetadata("All", SupportedProcessingModes = "Simple")]
[DXToolboxBrowsable(DXToolboxItemKind.Free)]
[ComplexBindingProperties("ItemsSource", "ValueMember")]
[LookupBindingProperties("ItemsSource", "DisplayMember", "ValueMember", "DisplayMember")]
public class ListBoxEdit :
    BaseEdit,
    ISelectorEdit,
    IBaseEdit,
    IInputElement,
    IEventArgsConverterSource

#Remarks

The ListBoxEdit displays a list of items which can be selected by an end-user. Items can manually be created and added to the ListBoxEdit.Items collection, or populated from a data source assigned to the ListBoxEdit.ItemsSource property.

Use the BaseEdit.StyleSettings property to specify one of the three built-in styles: Native, Checked and Radio.

  • Native

    ListBoxEdit_NativeStyle

  • Checked

    ListBoxEdit_CheckedStyle

  • Radio

    ListBoxEdit_RadioStyle

To learn more, see ListBoxEdit.

See Also