Sincronización de varios controles con el mismo origen de datos (Windows Forms para .NET)
Durante la implementación del enlace de datos en Windows Forms, varios controles se enlazan al mismo origen de datos. En las situaciones siguientes, es necesario asegurarse de que las propiedades enlazadas del control permanecen sincronizadas entre sí y con el origen de datos:
Si el origen de datos no implementa IBindingList y, por tanto, genera eventos ListChanged de tipo ItemChanged.
Si el origen de datos implementa IEditableObject.
En el caso anterior, puede utilizar un BindingSource para enlazar el origen fuente de datos a los controles. En este último caso, se utiliza un BindingSource
y se controla el evento BindingComplete y se llama EndCurrentEdit en el BindingManagerBase asociado.
Ejemplo de controles de enlace mediante BindingSource
El siguiente ejemplo de código demuestra cómo vincular tres controles (dos controles de cuadro de texto y un control DataGridView) a la misma columna en un DataSet utilizando un componente BindingSource. En el ejemplo se muestra cómo controlar el evento BindingComplete. Garantiza que cuando se cambia el valor de texto de un cuadro de texto, el otro cuadro de texto y el control DataGridView
se actualizan con el valor correcto.
El ejemplo utiliza un BindingSource para enlazar el origen de datos y los controles. Como alternativa, puede enlazar los controles directamente al origen de datos y recuperar el BindingManagerBase para el enlace desde el BindingContext del formulario y luego controlar el evento BindingComplete para el BindingManagerBase
. Para obtener más información sobre cómo enlazar el origen de datos y los controles, consulte la página de ayuda sobre el evento BindingComplete
de BindingManagerBase
.
public Form1()
{
InitializeComponent();
set1.Tables.Add("Menu");
set1.Tables[0].Columns.Add("Beverages");
// Add some rows to the table.
set1.Tables[0].Rows.Add("coffee");
set1.Tables[0].Rows.Add("tea");
set1.Tables[0].Rows.Add("hot chocolate");
set1.Tables[0].Rows.Add("milk");
set1.Tables[0].Rows.Add("orange juice");
// Set the data source to the DataSet.
bindingSource1.DataSource = set1;
//Set the DataMember to the Menu table.
bindingSource1.DataMember = "Menu";
// Add the control data bindings.
dataGridView1.DataSource = bindingSource1;
textBox1.DataBindings.Add("Text", bindingSource1,
"Beverages", true, DataSourceUpdateMode.OnPropertyChanged);
textBox2.DataBindings.Add("Text", bindingSource1,
"Beverages", true, DataSourceUpdateMode.OnPropertyChanged);
bindingSource1.BindingComplete +=
new BindingCompleteEventHandler(bindingSource1_BindingComplete);
}
void bindingSource1_BindingComplete(object sender, BindingCompleteEventArgs e)
{
// Check if the data source has been updated, and that no error has occurred.
if (e.BindingCompleteContext ==
BindingCompleteContext.DataSourceUpdate && e.Exception == null)
// If not, end the current edit.
e.Binding.BindingManagerBase.EndCurrentEdit();
}
Public Class Form1
Private Sub InitializeControlsAndDataSource()
' Add a table and column to DataSet.
set1.Tables.Add("Menu")
set1.Tables(0).Columns.Add("Beverages")
' Add some rows to the table.
set1.Tables(0).Rows.Add("coffee")
set1.Tables(0).Rows.Add("tea")
set1.Tables(0).Rows.Add("hot chocolate")
set1.Tables(0).Rows.Add("milk")
set1.Tables(0).Rows.Add("orange juice")
' Set the data source to the DataSet.
BindingSource1.DataSource = set1
'Set the DataMember to the Menu table.
BindingSource1.DataMember = "Menu"
' Add the control data bindings.
DataGridView1.DataSource = BindingSource1
TextBox1.DataBindings.Add("Text", BindingSource1, "Beverages",
True, DataSourceUpdateMode.OnPropertyChanged)
TextBox2.DataBindings.Add("Text", BindingSource1, "Beverages",
True, DataSourceUpdateMode.OnPropertyChanged)
End Sub
Private Sub BindingSource1_BindingComplete(ByVal sender As Object,
ByVal e As BindingCompleteEventArgs) Handles BindingSource1.BindingComplete
' Check if the data source has been updated, and that no error has occurred.
If e.BindingCompleteContext = BindingCompleteContext.DataSourceUpdate _
AndAlso e.Exception Is Nothing Then
' If not, end the current edit.
e.Binding.BindingManagerBase.EndCurrentEdit()
End If
End Sub
Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
InitializeControlsAndDataSource()
End Sub
End Class
Vea también
.NET Desktop feedback