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.v24.1.dll
NuGet Package: DevExpress.Wpf.Core
Declaration
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