CreateUserErrorEventHandler 委托

定义

表示处理 CreateUserError 控件的 CreateUserWizard 事件的方法。Represents the method that handles a CreateUserError event in the CreateUserWizard control.

public delegate void CreateUserErrorEventHandler(System::Object ^ sender, CreateUserErrorEventArgs ^ e);
public delegate void CreateUserErrorEventHandler(object sender, CreateUserErrorEventArgs e);
type CreateUserErrorEventHandler = delegate of obj * CreateUserErrorEventArgs -> unit
Public Delegate Sub CreateUserErrorEventHandler(sender As Object, e As CreateUserErrorEventArgs)

参数

sender
Object

事件源。The source of the event.

e
CreateUserErrorEventArgs

包含事件数据的 CreateUserErrorEventArgs 对象。A CreateUserErrorEventArgs object that contains the event data.

注解

CreateUserErrorEventHandler类表示在 CreateUserError 控件中处理事件的方法 CreateUserWizardThe CreateUserErrorEventHandler class represents the method that handles the CreateUserError event in a CreateUserWizard control.

创建 CreateUserErrorEventHandler 委托时,需要标识将处理该事件的方法。When you create a CreateUserErrorEventHandler delegate, you identify the method that will handle the event. 若要将事件与事件处理程序关联,请将该委托的一个实例添加到事件中。To associate the event with your event handler, add an instance of the delegate to the event. 除非移除了该委托,否则每当发生该事件时就会调用事件处理程序。The event handler is called whenever the event occurs, unless you remove the delegate. 有关事件处理程序委托的详细信息,请参阅 处理和引发事件For more information about event-handler delegates, see Handling and Raising Events.

扩展方法

GetMethodInfo(Delegate)

获取指示指定委托表示的方法的对象。Gets an object that represents the method represented by the specified delegate.

适用于

另请参阅