GlobalType.OnRemoving 方法

引发 Removing 事件。

命名空间:  Microsoft.VisualStudio.Shell.Design
程序集:  Microsoft.VisualStudio.Shell.Design(在 Microsoft.VisualStudio.Shell.Design.dll 中)

语法

声明
Protected Overridable Sub OnRemoving ( _
    e As EventArgs _
)
protected virtual void OnRemoving(
    EventArgs e
)

参数

备注

,它将删除当前类型之前, OnRemoving 方法将 PerformRemove 方法调用。

引发事件时会通过委托调用事件处理程序。 有关更多信息,请参见 引发事件

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

对继承者的说明

在派生类中重写 OnRemoving 时,一定要调用基类的 OnRemoving 方法以便注册的委托能够接收到事件。

.NET Framework 安全性

请参见

参考

GlobalType 类

Microsoft.VisualStudio.Shell.Design 命名空间

Removing

PerformRemove

OnRemoved