Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

BaseLayoutItem.DataBindings Property

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
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