In This Article

WizardButtonEventHandler Delegate

Represents the method that will handle button events of a Wizard control.

public delegate void WizardButtonEventHandler(object sender, WizardButtonEventArgs e)

Parameters

Name Type Description
sender object
e WizardButtonEventArgs

Remarks

When you create a WizardButtonEventHandler 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.

Constructors

WizardButtonEventHandler(object, IntPtr)

public WizardButtonEventHandler(object @object, IntPtr method)
Parameter Type Description
object object
method IntPtr

Methods

BeginInvoke(object, WizardButtonEventArgs, AsyncCallback, object)

public virtual IAsyncResult BeginInvoke(object sender, WizardButtonEventArgs e, AsyncCallback callback, object @object)
Parameter Type Description
sender object
e WizardButtonEventArgs
callback AsyncCallback
object object

Returns

IAsyncResult

EndInvoke(IAsyncResult)

public virtual void EndInvoke(IAsyncResult result)
Parameter Type Description
result IAsyncResult

Invoke(object, WizardButtonEventArgs)

public virtual void Invoke(object sender, WizardButtonEventArgs e)
Parameter Type Description
sender object
e WizardButtonEventArgs