EventBindingService.RemoveMethod 方法

在派生类中重写时,通过从事件处理类中移除特定事件来请求特定方法停止处理该事件。

命名空间:  Microsoft.Windows.Design.Services
程序集:  Microsoft.Windows.Design.Interaction(在 Microsoft.Windows.Design.Interaction.dll 中)

语法

声明
Public MustOverride Function RemoveMethod ( _
    modelEvent As ModelEvent, _
    methodName As String _
) As Boolean
public abstract bool RemoveMethod(
    ModelEvent modelEvent,
    string methodName
)
public:
virtual bool RemoveMethod(
    ModelEvent^ modelEvent, 
    String^ methodName
) abstract
abstract RemoveMethod : 
        modelEvent:ModelEvent * 
        methodName:string -> bool 
public abstract function RemoveMethod(
    modelEvent : ModelEvent, 
    methodName : String
) : boolean

参数

  • methodName
    类型:System.String
    停止处理 modelEvent 的方法。

返回值

类型:System.Boolean
如果 methodName 从事件处理类中成功移除,则为 true;否则为 false。

备注

如果方法不为空,则忽略此请求。

.NET Framework 安全性

请参见

参考

EventBindingService 类

Microsoft.Windows.Design.Services 命名空间

ModelEditingScope

ModelEventCollection

其他资源

WPF 设计器扩展性体系结构