DialogPage.OnClosed Method
Handles Close messages from the Visual Studio environment.
Namespace: Microsoft.VisualStudio.Shell
Assembly: Microsoft.VisualStudio.Shell.11.0 (in Microsoft.VisualStudio.Shell.11.0.dll)
Syntax
'Declaration
Protected Overridable Sub OnClosed ( _
e As EventArgs _
)
protected virtual void OnClosed(
EventArgs e
)
protected:
virtual void OnClosed(
EventArgs^ e
)
abstract OnClosed :
e:EventArgs -> unit
override OnClosed :
e:EventArgs -> unit
protected function OnClosed(
e : EventArgs
)
Parameters
e
Type: System.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.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.