BindingManagerBase.Bindings Property
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.
Gets the collection of bindings being managed.
public:
property System::Windows::Forms::BindingsCollection ^ Bindings { System::Windows::Forms::BindingsCollection ^ get(); };
public System.Windows.Forms.BindingsCollection Bindings { get; }
member this.Bindings : System.Windows.Forms.BindingsCollection
Public ReadOnly Property Bindings As BindingsCollection
Property Value
A BindingsCollection that contains the Binding objects managed by this BindingManagerBase.
Examples
The following code example gets the BindingManagerBase for a specific data source. The example then uses the Bindings property to print information about each control bound to the same data source.
void PrintBoundControls()
{
BindingManagerBase^ myBindingBase = this->BindingContext[ ds,"customers" ];
System::Collections::IEnumerator^ myEnum = myBindingBase->Bindings->GetEnumerator();
while ( myEnum->MoveNext() )
{
Binding^ b = safe_cast<Binding^>(myEnum->Current);
Console::WriteLine( b->Control );
}
}
private void PrintBoundControls()
{
BindingManagerBase myBindingBase = this.BindingContext[ds, "customers"];
foreach(Binding b in myBindingBase.Bindings)
{
Console.WriteLine(b.Control.ToString());
}
}
Private Sub PrintBoundControls()
Dim myBindingBase As BindingManagerBase = Me.BindingContext(ds, "customers")
Dim b As Binding
For Each b In myBindingBase.Bindings
Console.WriteLine(b.Control.ToString())
Next b
End Sub
Applies to
See also
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.