Condividi tramite


Package.Initialize Method

Called when the VSPackage is loaded by Visual Studio.

Namespace:  Microsoft.VisualStudio.Shell
Assembly:  Microsoft.VisualStudio.Shell (in Microsoft.VisualStudio.Shell.dll)

Syntax

Protected Overridable Sub Initialize

Me.Initialize()
protected virtual void Initialize()
protected:
virtual void Initialize()
protected function Initialize()

Remarks

Override Initialize when you need to carry out additional steps (such as Editor Factory registration) when the VSPackage is loaded by Visual Studio.

Place any initialization steps that require access to the global service provider (such as Editor Factory registration) in the Initialize method.

In contrast, steps such as adding services, adding option keys, and toolbox event handlers should be placed in the Package constructor method.

Permissions

See Also

Reference

Package Class

Package Members

Microsoft.VisualStudio.Shell Namespace

RegisterEditorFactory