ControlBindingsCollection::Add Method (String^, Object^, String^, Boolean, DataSourceUpdateMode)
Creates a binding that binds the specified control property to the specified data member of the specified data source, optionally enabling formatting, propagating values to the data source based on the specified update setting, and adding the binding to the collection.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
public: Binding^ Add( String^ propertyName, Object^ dataSource, String^ dataMember, bool formattingEnabled, DataSourceUpdateMode updateMode )
Parameters
- propertyName
-
Type:
System::String^
The name of the control property to bind.
- dataSource
-
Type:
System::Object^
An Object representing the data source.
- dataMember
-
Type:
System::String^
The property or list to bind to.
- formattingEnabled
-
Type:
System::Boolean
true to format the displayed data; otherwise, false.
- updateMode
-
Type:
System.Windows.Forms::DataSourceUpdateMode
One of the DataSourceUpdateMode values.
| Exception | Condition |
|---|---|
| ArgumentException | The property given by propertyName does not exist on the control or is read-only. -or- The specified data member does not exist on the data source. -or- The data source, data member, or control property specified are associated with another binding in the collection. |
Calling the Add method raises the CollectionChanged event.
Available since 2.0