ProvideToolboxPageAttribute Constructor (Type^, Int16)
Visual Studio 2015
Initializes a new instance of ProvideToolboxPageAttribute, using the type of the class implementing the Customize Toolbox dialog page, and a resource ID.
Assembly: Microsoft.VisualStudio.Shell.14.0 (in Microsoft.VisualStudio.Shell.14.0.dll)
Parameters
- pageType
-
Type:
System::Type^
[in] The Type of the class implementing the Customize Toolbox dialog page. This type must derive from the DialogPage class.
- nameResourceID
-
Type:
System::Int16
[in] The native resource ID in a VSPackage's satellite dll containing the name for the tab hosting this Customize Toolbox dialog page.
This method returns ArgumentException if pageType does not inherit from the DialogPage class.
This example shows how to register the Customize Toolbox dialog page implementation MyToolBoxPage as being provided by MyPackage. The name resource of the tab containing the page is 1002.
[ProvideToolboxPage(typeof(VsToolboxPage), 1002)]
[Guid("XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX")]
class VSCorePackage : Package
Show: