ToolStripPanelRow.OnControlRemoved(Control, Int32) 方法

定义

引发 ControlRemoved 事件。

protected public:
 virtual void OnControlRemoved(System::Windows::Forms::Control ^ control, int index);
protected internal virtual void OnControlRemoved (System.Windows.Forms.Control control, int index);
abstract member OnControlRemoved : System.Windows.Forms.Control * int -> unit
override this.OnControlRemoved : System.Windows.Forms.Control * int -> unit
Protected Friend Overridable Sub OnControlRemoved (control As Control, index As Integer)

参数

control
Control

已从 ToolStripPanelRow 移除的控件。

index
Int32

从零开始的索引,表示所移除的控件的位置。

注解

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

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

继承者说明

在派生类中重写 OnControlRemoved(Control, Int32) 时,一定要调用基类的 OnControlRemoved(Control, Int32) 方法,以便已注册的委托对事件进行接收。

适用于