DataGridView.AllowUserToAddRowsChanged イベント

定義

AllowUserToAddRows プロパティの値が変化したときに発生します。

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

イベントの種類

次のコード例では、このメンバーの使用方法を示します。 この例では、イベント ハンドラーがイベントの AllowUserToAddRowsChanged 発生を報告します。 このレポートは、イベントが発生したタイミングを知るのに役立ち、デバッグに役立ちます。 複数のイベントまたは頻繁に発生するイベントを報告するには、 を Console.WriteLine に置き換えるかMessageBox.Show、複数行TextBoxにメッセージを追加することを検討してください。

コード例を実行するには、 という名前DataGridView1の型DataGridViewのインスタンスを含むプロジェクトに貼り付けます。 次に、イベント ハンドラーが イベントに関連付けられていることを確認します AllowUserToAddRowsChanged

private void DataGridView1_AllowUserToAddRowsChanged(Object sender, EventArgs e) {

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

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

End Sub

注釈

イベントを処理する方法の詳細については、次を参照してください。処理とイベントの発生します。

適用対象

こちらもご覧ください