DialogPage.OnClosed(EventArgs) Method

Definition

Handles Close messages from the Visual Studio environment.

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

Parameters

e
EventArgs

[in] Arguments to event handler.

Remarks

This method is a handler for Windows-based events, and is not a managed delegate.

A Close message is sent when a dialog page's user interface window has been closed.

The default implementation reloads the state of the dialog page from storage, to guarantee that if the object is accessed in the future, it has the correct state.

In addition, the default implementation sets the dialog page's internal user interface state to inactive.

Because this state is used throughout the parent class, when overriding implementations, it should always call the base implementation of this method.

Applies to