DataGridView.AllowUserToDeleteRowsChanged Evento

Definição

Ocorre quando o valor da propriedade AllowUserToDeleteRowsChanged muda.

public:
 event EventHandler ^ AllowUserToDeleteRowsChanged;
public event EventHandler AllowUserToDeleteRowsChanged;
public event EventHandler? AllowUserToDeleteRowsChanged;
member this.AllowUserToDeleteRowsChanged : EventHandler 
Public Custom Event AllowUserToDeleteRowsChanged As EventHandler 

Tipo de evento

Exemplos

O exemplo de código a seguir demonstra o uso desse membro. No exemplo, um manipulador de eventos relata a ocorrência do AllowUserToDeleteRowsChanged evento. Este relatório ajuda você a aprender quando o evento ocorre e pode ajudá-lo na depuração. Para relatar vários eventos ou eventos que ocorrem com frequência, considere substituir MessageBox.ShowConsole.WriteLine ou acrescentar a mensagem a uma multilinha TextBox.

Para executar o código de exemplo, cole-o em um projeto que contém uma instância do tipo DataGridView chamada DataGridView1. Em seguida, verifique se o manipulador de eventos está associado ao AllowUserToDeleteRowsChanged evento.

private void DataGridView1_AllowUserToDeleteRowsChanged(Object sender, EventArgs e) {

   MessageBox.Show("You are in the DataGridView.AllowUserToDeleteRowsChanged event.");
}
Private Sub DataGridView1_AllowUserToDeleteRowsChanged(sender as Object, e as EventArgs) _ 
     Handles DataGridView1.AllowUserToDeleteRowsChanged

   MessageBox.Show("You are in the DataGridView.AllowUserToDeleteRowsChanged event.")

End Sub

Comentários

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

Aplica-se a

Confira também