Skip to main content
A newer version of this page is available. .

ListBoxEditSettings.ItemsSource Property

Gets or sets the listbox’s data source. This is a dependency property.

Namespace: DevExpress.Xpf.Editors.Settings

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

Declaration

public object ItemsSource { get; set; }

Property Value

Type Description
Object

An object that represents the data source from which the listbox retrieves its data.

Remarks

The listbox can be bound to any object that implements the IEnumerable interface or its descendant (e.g. IList, ICollection). To bind a listbox, you should assign a data source to the ItemsSource property. Note that the listbox cannot be bound at design-time - only at runtime.

See Also