DataGridView.OnRowsRemoved(DataGridViewRowsRemovedEventArgs) 方法

定义

引发 RowsRemoved 事件。

protected:
 virtual void OnRowsRemoved(System::Windows::Forms::DataGridViewRowsRemovedEventArgs ^ e);
protected virtual void OnRowsRemoved (System.Windows.Forms.DataGridViewRowsRemovedEventArgs e);
abstract member OnRowsRemoved : System.Windows.Forms.DataGridViewRowsRemovedEventArgs -> unit
override this.OnRowsRemoved : System.Windows.Forms.DataGridViewRowsRemovedEventArgs -> unit
Protected Overridable Sub OnRowsRemoved (e As DataGridViewRowsRemovedEventArgs)

参数

e
DataGridViewRowsRemovedEventArgs

一个 DataGridViewRowsRemovedEventArgs,包含有关已删除的行的信息。

注解

引发事件时,将通过委托调用事件处理程序。 有关详细信息,请参阅 处理和引发事件

OnRowsRemoved 方法还允许派生类对事件进行处理而不必附加委托。 这是在派生类中处理事件的首选技术。

继承者说明

在派生类中重写 OnRowsRemoved(DataGridViewRowsRemovedEventArgs) 时,请务必调用基类的 OnRowsRemoved(DataGridViewRowsRemovedEventArgs) 方法,以便注册的委托接收 事件。

适用于

另请参阅