Binding Constructor (String^, Object^, String^, Boolean)
.NET Framework (current version)
Initializes a new instance of the Binding class that binds the indicated control property to the specified data member of the data source, and optionally enables formatting to be applied.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
public: Binding( 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 that represents 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 | Formatting is disabled and propertyName is neither a valid property of a control nor an empty string (""). |
.NET Framework
Available since 2.0
Available since 2.0
Show: