EventBindingService.AddEventHandler 方法

在派生类中重写时,请求声明指定的方法以处理指定事件。

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

语法

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

参数

返回值

类型:System.Boolean
如果可以在代码隐藏文件中成功声明方法以处理给定事件,则为 true;否则为 false。

备注

由 methodName 指定的方法必须已经存在。 通过调用 CreateMethod 可以创建新方法。

在 C# 中,此方法始终返回 false。 在 Visual Basic 中,可以使用 Handles 子句。

.NET Framework 安全性

请参见

参考

EventBindingService 类

Microsoft.Windows.Design.Services 命名空间

ModelEditingScope

ModelEventCollection

其他资源

WPF 设计器扩展性体系结构