DataGridViewColumn.Disposed イベント

定義

DataGridViewColumn が破棄されたときに発生します。

public:
 virtual event EventHandler ^ Disposed;
[System.ComponentModel.Browsable(false)]
public event EventHandler Disposed;
[System.ComponentModel.Browsable(false)]
public event EventHandler? Disposed;
[<System.ComponentModel.Browsable(false)>]
member this.Disposed : EventHandler 
Public Custom Event Disposed As EventHandler 

イベントの種類

実装

属性

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

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

private void DataGridViewColumn1_Disposed(Object sender, EventArgs e) {

   MessageBox.Show("You are in the DataGridViewColumn.Disposed event.");
}
Private Sub DataGridViewColumn1_Disposed(sender as Object, e as EventArgs) _ 
     Handles DataGridViewColumn1.Disposed

   MessageBox.Show("You are in the DataGridViewColumn.Disposed event.")

End Sub

注釈

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

適用対象

こちらもご覧ください