CreateUserWizard.OnContinueButtonClick(EventArgs) Method

Definition

Raises the ContinueButtonClick event when the user clicks the Continue button on the final user account creation step.

protected:
 virtual void OnContinueButtonClick(EventArgs ^ e);
protected virtual void OnContinueButtonClick (EventArgs e);
abstract member OnContinueButtonClick : EventArgs -> unit
override this.OnContinueButtonClick : EventArgs -> unit
Protected Overridable Sub OnContinueButtonClick (e As EventArgs)

Parameters

e
EventArgs

An EventArgs that contains the event data.

Remarks

The ContinueButtonClick event is raised when the user clicks the Continue button on the CreateUserWizard control.

Raising an event invokes the event handler through a delegate. For more information, see Handling and Raising Events.

The OnContinueButtonClick method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.

Notes to Inheritors

When overriding OnContinueButtonClick(EventArgs) in a derived class, be sure to call the base class's OnContinueButtonClick(EventArgs) method so that registered delegates receive the event.

Applies to

See also