CreateUserWizard.OnContinueButtonClick(EventArgs) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
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.