C# Класс Boo.BooLangStudio.BooLangStudioPackage

Наследование: Microsoft.VisualStudio.Package.ProjectPackage, IVsInstalledProduct
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
BooLangStudioPackage ( ) : System

Default constructor of the package. Inside this method you can place any initialization code that does not require any Visual Studio service because at this point the package object is created but not sited yet inside Visual Studio environment. The place to do all the other initialization is the Initialize method.

GetResourceString ( string resourceName ) : string

This method loads a localized string based on the specified resource.

IdBmpSplash ( uint &pIdBmp ) : int

This method is called during Devenv /Setup to get the bitmap to display on the splash screen for this package.

IdIcoLogoForAboutbox ( uint &pIdIco ) : int

This method is called to get the icon that will be displayed in the Help About dialog when this package is selected.

OfficialName ( string &pbstrName ) : int

This methods provides the product official name, it will be displayed in the help about dialog.

ProductDetails ( string &pbstrProductDetails ) : int

This methods provides the product description, it will be displayed in the help about dialog.

ProductID ( string &pbstrPID ) : int

This methods provides the product version, it will be displayed in the help about dialog.

Защищенные методы

Метод Описание
Initialize ( ) : void

Initialization of the package; this method is called right after the package is sited, so this is the place where you can put all the initilaization code that rely on services provided by VisualStudio.

Приватные методы

Метод Описание
OrganizeMembersCallback ( object sender, EventArgs e ) : void

This function is the callback used to execute a command when the a menu item is clicked. See the Initialize method to see how the menu item is associated to this function using the OleMenuCommandService service and the MenuCommand class.

Описание методов

BooLangStudioPackage() публичный Метод

Default constructor of the package. Inside this method you can place any initialization code that does not require any Visual Studio service because at this point the package object is created but not sited yet inside Visual Studio environment. The place to do all the other initialization is the Initialize method.
public BooLangStudioPackage ( ) : System
Результат System

GetResourceString() публичный Метод

This method loads a localized string based on the specified resource.
public GetResourceString ( string resourceName ) : string
resourceName string Resource to load
Результат string

IdBmpSplash() публичный Метод

This method is called during Devenv /Setup to get the bitmap to display on the splash screen for this package.
public IdBmpSplash ( uint &pIdBmp ) : int
pIdBmp uint The resource id corresponding to the bitmap to display on the splash screen
Результат int

IdIcoLogoForAboutbox() публичный Метод

This method is called to get the icon that will be displayed in the Help About dialog when this package is selected.
public IdIcoLogoForAboutbox ( uint &pIdIco ) : int
pIdIco uint The resource id corresponding to the icon to display on the Help About dialog
Результат int

Initialize() защищенный Метод

Initialization of the package; this method is called right after the package is sited, so this is the place where you can put all the initilaization code that rely on services provided by VisualStudio.
protected Initialize ( ) : void
Результат void

OfficialName() публичный Метод

This methods provides the product official name, it will be displayed in the help about dialog.
public OfficialName ( string &pbstrName ) : int
pbstrName string Out parameter to which to assign the product name
Результат int

ProductDetails() публичный Метод

This methods provides the product description, it will be displayed in the help about dialog.
public ProductDetails ( string &pbstrProductDetails ) : int
pbstrProductDetails string Out parameter to which to assign the description of the package
Результат int

ProductID() публичный Метод

This methods provides the product version, it will be displayed in the help about dialog.
public ProductID ( string &pbstrPID ) : int
pbstrPID string Out parameter to which to assign the version number
Результат int