TypeDescriptor.CreateEvent 方法

定义

创建和现有事件描述符相同的新的事件描述符。

重载

CreateEvent(Type, EventDescriptor, Attribute[])

当传递现有的 EventDescriptor 时,创建和现有事件描述符相同的新的事件描述符。

CreateEvent(Type, String, Type, Attribute[])

通过从类型上的指定事件动态生成描述符信息,创建与现有事件描述符相同的新事件描述符。

CreateEvent(Type, EventDescriptor, Attribute[])

Source:
TypeDescriptor.cs
Source:
TypeDescriptor.cs
Source:
TypeDescriptor.cs

当传递现有的 EventDescriptor 时,创建和现有事件描述符相同的新的事件描述符。

public:
 static System::ComponentModel::EventDescriptor ^ CreateEvent(Type ^ componentType, System::ComponentModel::EventDescriptor ^ oldEventDescriptor, ... cli::array <Attribute ^> ^ attributes);
public static System.ComponentModel.EventDescriptor CreateEvent (Type componentType, System.ComponentModel.EventDescriptor oldEventDescriptor, params Attribute[] attributes);
static member CreateEvent : Type * System.ComponentModel.EventDescriptor * Attribute[] -> System.ComponentModel.EventDescriptor
Public Shared Function CreateEvent (componentType As Type, oldEventDescriptor As EventDescriptor, ParamArray attributes As Attribute()) As EventDescriptor

参数

componentType
Type

要为其创建新事件的组件类型。

oldEventDescriptor
EventDescriptor

现有事件信息。

attributes
Attribute[]

新属性。

返回

将指定元数据属性与现有元数据属性进行合并的新 EventDescriptor

另请参阅

适用于

CreateEvent(Type, String, Type, Attribute[])

Source:
TypeDescriptor.cs
Source:
TypeDescriptor.cs
Source:
TypeDescriptor.cs

通过从类型上的指定事件动态生成描述符信息,创建与现有事件描述符相同的新事件描述符。

public:
 static System::ComponentModel::EventDescriptor ^ CreateEvent(Type ^ componentType, System::String ^ name, Type ^ type, ... cli::array <Attribute ^> ^ attributes);
public static System.ComponentModel.EventDescriptor CreateEvent (Type componentType, string name, Type type, params Attribute[] attributes);
static member CreateEvent : Type * string * Type * Attribute[] -> System.ComponentModel.EventDescriptor
Public Shared Function CreateEvent (componentType As Type, name As String, type As Type, ParamArray attributes As Attribute()) As EventDescriptor

参数

componentType
Type

该事件依赖的组件的类型。

name
String

事件的名称。

type
Type

处理该事件的委托的类型。

attributes
Attribute[]

此事件的属性。

返回

绑定到类型的 EventDescriptor

另请参阅

适用于