New to Telerik UI for WPFStart a free 30-day trial

Represents a class that serves as data binding source for DropDown element.

Definition

Namespace:Telerik.Windows.Controls.MultiColumnComboBox

Assembly:Telerik.Windows.Controls.GridView.dll

Syntax:

C#
public abstract class ItemsSourceProvider : Freezable, INotifyPropertyChanged, IDisposable

Inheritance: objectItemsSourceProvider

Derived Classes: GridViewItemsSourceProvider

Implements: IDisposableINotifyPropertyChanged

Constructors

C#
protected ItemsSourceProvider()

Fields

ItemsSourceProperty

DependencyProperty

Represents the ItemsSource dependency property.

C#
public static readonly DependencyProperty ItemsSourceProperty

Properties

Gets the collection view that is to be bound to RadMultiColumnComboBox.

C#
public QueryableCollectionView CollectionView { get; }

Gets or sets the ItemsSource.

C#
public object ItemsSource { get; set; }

Methods

Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.

C#
public void Dispose()

Implements: IDisposable.Dispose()

Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.

C#
protected virtual void Dispose(bool disposing)
Parameters:disposingbool

Raises the PropertyChanged event.

C#
protected void OnPropertyChanged(string propertyName)
Parameters:propertyNamestring

Events

Occurs when a property value changes.

C#
public event PropertyChangedEventHandler PropertyChanged

Implements: INotifyPropertyChanged.PropertyChanged