Gets or sets the data source for the specified Row.

Namespace: Dapfor.Wpf.Controls
Assembly: Dapfor.Wpf (in Dapfor.Wpf.dll) Version: 4.1.0.26317 (4.1.0.26317)

Syntax

C#
public Object ItemsSource { get; set; }
Visual Basic
Public Property ItemsSource As Object
	Get
	Set
Visual C++
public:
property Object^ ItemsSource {
	Object^ get ();
	void set (Object^ value);
}
F#
member ItemsSource : Object with get, set

Property Value

Type: Object
The data source.

Remarks

In addition to GridControl.ItemsSource property that has become a common method of data binding. GridControl provides a new API to bind either the grid or individual rows to data sources.

The bound data source may implement IList or IBindingList interfaces. If the bound data source implements IBindingList interface, the grid subscribes to notifications of this data collection and enables automated thread-safe management of content changes.

See Also