The DataSource property can be set to a number of data sources, including types, objects, and lists of types. The resulting data source will be exposed as a list. The following table shows some of the common data sources and the resulting list evaluation.
DataSource property
|
List results
|
|---|
nullNothingnullptra null reference (Nothing in Visual Basic)
|
An empty IBindingList of objects. Adding an item sets the list to the type of the added item.
|
nullNothingnullptra null reference (Nothing in Visual Basic) with DataMember set
|
Not supported, raises ArgumentException.
|
Non-list type or object of type "T"
|
Empty IBindingList of type "T".
|
Array instance
|
IBindingList containing the array elements.
|
IEnumerable instance
|
An IBindingList containing the IEnumerable items.
|
List instance containing type "T"
|
IBindingList instance containing type "T".
|
In addition, DataSource can be set to other list types such as IListSource and ITypedList and the BindingSource will handle them appropriately. In this case, the type contained in the list should have a default constructor.
When setting a data source, if the supplied reference contains more than one list or table, you must set the DataMember property to a string that specifies the list to bind to. Setting this property raises the DataSourceChanged event.
The DataSource property is the default property for the BindingSource class.