DataGrid.OnUnloadingRow(DataGridRowEventArgs) メソッド

定義

UnloadingRow イベントを発生させます。

protected:
 virtual void OnUnloadingRow(System::Windows::Controls::DataGridRowEventArgs ^ e);
protected virtual void OnUnloadingRow (System.Windows.Controls.DataGridRowEventArgs e);
abstract member OnUnloadingRow : System.Windows.Controls.DataGridRowEventArgs -> unit
override this.OnUnloadingRow : System.Windows.Controls.DataGridRowEventArgs -> unit
Protected Overridable Sub OnUnloadingRow (e As DataGridRowEventArgs)

パラメーター

e
DataGridRowEventArgs

イベントのデータ。

注釈

イベントを発生させると、イベント ハンドラーがデリゲートから呼び出されます。 詳細については、処理とイベントの発生 を参照してください。

OnUnloadingRow メソッドを使用すると、デリゲートを結び付けずに、派生クラスでイベントを処理することもできます。 派生クラスでイベントを処理する場合は、この手法をお勧めします。

注意 (継承者)

派生クラスでオーバーライドする OnUnloadingRow(DataGridRowEventArgs) 場合は、登録されたデリゲートがイベントを受け取るように、基底クラスの OnUnloadingRow(DataGridRowEventArgs) メソッドを必ず呼び出してください。

適用対象