BindingSource Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Initializes a new instance of the BindingSource class.
Overloads
BindingSource() |
Initializes a new instance of the BindingSource class to the default property values. |
BindingSource(IContainer) |
Initializes a new instance of the BindingSource class and adds the BindingSource to the specified container. |
BindingSource(Object, String) |
Initializes a new instance of the BindingSource class with the specified data source and data member. |
BindingSource()
Initializes a new instance of the BindingSource class to the default property values.
public:
BindingSource();
public BindingSource ();
Public Sub New ()
Remarks
The following table shows the default BindingSource property values initialized by this constructor.
Property | Default value |
---|---|
DataSource | null |
DataMember | Empty |
Sort | null |
Filter | null |
RaiseListChangedEvents | true |
See also
Applies to
BindingSource(IContainer)
Initializes a new instance of the BindingSource class and adds the BindingSource to the specified container.
public:
BindingSource(System::ComponentModel::IContainer ^ container);
public BindingSource (System.ComponentModel.IContainer container);
new System.Windows.Forms.BindingSource : System.ComponentModel.IContainer -> System.Windows.Forms.BindingSource
Public Sub New (container As IContainer)
Parameters
- container
- IContainer
The IContainer to add the current BindingSource to.
Remarks
This constructor calls the parameterless constructor, and then adds the current BindingSource to the specified container. It is not typically used by the solutions programmer, but instead by authors of design-time environments.
Applies to
BindingSource(Object, String)
Initializes a new instance of the BindingSource class with the specified data source and data member.
public:
BindingSource(System::Object ^ dataSource, System::String ^ dataMember);
public BindingSource (object dataSource, string dataMember);
public BindingSource (object? dataSource, string dataMember);
new System.Windows.Forms.BindingSource : obj * string -> System.Windows.Forms.BindingSource
Public Sub New (dataSource As Object, dataMember As String)
Parameters
- dataSource
- Object
The data source for the BindingSource.
- dataMember
- String
The specific column or list name within the data source to bind to.