Skip to main content

BaseLayoutItem.DataBindings Property

Gets the data bindings for the layout item.

Namespace: DevExpress.XtraLayout

Assembly: DevExpress.XtraLayout.v23.2.dll

NuGet Package: DevExpress.Win.Navigation

Declaration

[DXCategory("Data")]
public ControlBindingsCollection DataBindings { get; }

Property Value

Type Description
ControlBindingsCollection

A ControlBindingsCollection that contains the Binding objects for the item

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