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.

Namespace:   System.Windows.Forms
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.

Return Value

Type: System.Windows.Forms::Binding^

The newly created Binding.

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.

.NET Framework
Available since 2.0
Return to top
Show: