Control.BindingContextChanged Evento
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Se produce cuando cambia el valor de la propiedad BindingContext.
public:
event EventHandler ^ BindingContextChanged;
public event EventHandler BindingContextChanged;
public event EventHandler? BindingContextChanged;
member this.BindingContextChanged : EventHandler
Public Custom Event BindingContextChanged As EventHandler
Tipo de evento
Ejemplos
En el ejemplo de código siguiente se agrega un EventHandler delegado al BindingContextChanged evento de un TextBox control .
private:
void AddEventHandler()
{
textBox1->BindingContextChanged += gcnew EventHandler(
this, &Form1::BindingContext_Changed );
}
void BindingContext_Changed( Object^ /*sender*/, EventArgs^ /*e*/ )
{
Console::WriteLine( "BindingContext changed" );
}
private void AddEventHandler()
{
textBox1.BindingContextChanged += new EventHandler(BindingContext_Changed);
}
private void BindingContext_Changed(object sender, EventArgs e)
{
Console.WriteLine("BindingContext changed");
}
Private Sub AddEventHandler()
AddHandler textBox1.BindingContextChanged, _
AddressOf BindingContext_Changed
End Sub
Private Sub BindingContext_Changed(sender As Object, e As EventArgs)
Console.WriteLine("BindingContext changed")
End Sub
Comentarios
Para agregar un nuevo BindingContext elemento a Control a través de la BindingContext propiedad , vea el BindingContext constructor .
Este evento se genera si se cambia la BindingContext propiedad mediante una modificación mediante programación o una interacción del usuario.
Para obtener más información sobre el manejo de eventos, consulte controlar y provocar eventos.