BaseLayoutItem.DataBindings Property
In This Article
Gets the data bindings for the layout item.
Namespace: DevExpress.XtraLayout
Assembly: DevExpress.XtraLayout.v24.2.dll
NuGet Package: DevExpress.Win.Navigation
#Declaration
[DXCategory("Data")]
public ControlBindingsCollection DataBindings { get; }
#Property Value
Type | Description |
---|---|
Control |
A Control |
#Remarks
Use the DataBindings property to access the ControlBindingsCollection. By adding Binding objects to the collection, you can bind any property of a control to the property of an object.
The DataBindings property allows you to bind the BaseLayoutItem.Text and BaseLayoutItem.CustomizationFormText properties.
The following code binds the LayoutControlItem.Text property to a Name field in a data source (table1BindingSource):
layoutControlItem1.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.table1BindingSource, "Name", true));
See Also