EventBindingService.IsExistingMethodName 方法

在派生类中重写时,确定处理指定事件的方法的名称是否已经存在。

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

语法

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

参数

  • methodName
    类型:System.String
    要检查的方法的名称。

返回值

类型:System.Boolean
如果处理 modelEvent 的方法的名称已经存在,则为 true;否则为 false。

备注

例如,如果处理 Button1 的 Click 事件的名为 Button1_Click 的方法已经存在,则此方法应返回 true。

.NET Framework 安全性

请参见

参考

EventBindingService 类

Microsoft.Windows.Design.Services 命名空间

ModelEditingScope

ModelEventCollection

其他资源

WPF 设计器扩展性体系结构