Control.BindingContextChanged Evento

Definição

Ocorre quando o valor da propriedade BindingContext muda.

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

Exemplos

O exemplo de código a seguir adiciona um EventHandler delegado ao BindingContextChanged evento de um TextBox controle .

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

Comentários

Para adicionar um novo BindingContext ao Control por meio da BindingContext propriedade , consulte o BindingContext construtor .

Esse evento será gerado se a BindingContext propriedade for alterada por uma modificação programática ou interação do usuário.

Para obter mais informações sobre como lidar com eventos, consulte Manipulando e gerando eventos.

Aplica-se a

Confira também