Data NavigatorData Source Property
This gets or sets the data source for the data navigator
Definition
Namespace: EWSoftware.ListControls
Assembly: EWSoftware.ListControls (in EWSoftware.ListControls.dll) Version: 2024.12.31.0
The data source object must support the IList interface such as a DataSet or an Array. This property must be set in order for the control to display information. If the data source contains multiple items to which the control can bind, use the DataMember property to specify the sub-list to use.
Assembly: EWSoftware.ListControls (in EWSoftware.ListControls.dll) Version: 2024.12.31.0
C#
[TypeConverterAttribute("Design.DataSourceConverter, System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
public Object? DataSource { get; set; }VB
<TypeConverterAttribute("Design.DataSourceConverter, System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")>
Public Property DataSource As Object
Get
SetC++
public:
[TypeConverterAttribute(L"Design.DataSourceConverter, System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
property Object^ DataSource {
Object^ get ();
void set (Object^ value);
}F#
[<TypeConverterAttribute("Design.DataSourceConverter, System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")>]
member DataSource : Object with get, setProperty Value
ObjectThe data source object must support the IList interface such as a DataSet or an Array. This property must be set in order for the control to display information. If the data source contains multiple items to which the control can bind, use the DataMember property to specify the sub-list to use.
Exceptions
| ArgumentException | This is thrown if the data source does not support the IList interface. |