ControlBindingsCollection::Add Method (String^, Object^, String^, Boolean)
.NET Framework (current version)
Creates a binding with the specified control property name, data source, data member, and information about whether formatting is enabled, and adds 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 )
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
| Exception | Condition |
|---|---|
| ArgumentException | The property given by propertyName does not exist on the control. -or- The property given is a read-only property. |
| Exception | If formatting is disabled and the propertyName is neither a valid property of a control nor an empty string (""). |
.NET Framework
Available since 2.0
Available since 2.0
Show: