ToolStripComboBox.OnUnsubscribeControlEvents(Control) 方法

定义

取消订阅指定控件中的事件。

protected:
 override void OnUnsubscribeControlEvents(System::Windows::Forms::Control ^ control);
protected override void OnUnsubscribeControlEvents (System.Windows.Forms.Control control);
protected override void OnUnsubscribeControlEvents (System.Windows.Forms.Control? control);
override this.OnUnsubscribeControlEvents : System.Windows.Forms.Control -> unit
Protected Overrides Sub OnUnsubscribeControlEvents (control As Control)

参数

control
Control

向其取消订阅事件的控件。

注解

OnSubscribeControlEvents重写 方法以取消订阅 中OnSubscribeControlEvents订阅的事件。

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

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

继承者说明

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

适用于