Add multiple DataBindings to Winforms label

Viewed 3947

I am displaying different values in a Label control from a BindingSource that is bound to a DataGridView depending on which row is selected.

Right now, the label has a databinding that looks as follows:

this.label9.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.bev_BindingSource, "countryRegion", true));

which successfully displays the value of the countryRegion column.

Is is possible to set the databinding as a concatenated result from two columns, in this case countryRegion and country?

2 Answers
Related