In This Article

WizardLayoutButtonsEventHandler Delegate

Represents the method that will handle the layout buttons event of a Wizard control.

public delegate void WizardLayoutButtonsEventHandler(object sender, WizardLayoutButtonsEventArgs e)

Parameters

Name Type Description
sender object
e WizardLayoutButtonsEventArgs

Remarks

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

WizardLayoutButtonsEventHandler(object, IntPtr)

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

Methods

BeginInvoke(object, WizardLayoutButtonsEventArgs, AsyncCallback, object)

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

Returns

IAsyncResult

EndInvoke(IAsyncResult)

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

Invoke(object, WizardLayoutButtonsEventArgs)

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