C# 클래스 Boo.BooLangStudio.BooLangStudioPackage

상속: Microsoft.VisualStudio.Package.ProjectPackage, IVsInstalledProduct
파일 보기 프로젝트 열기: jagregory/boolangstudio 1 사용 예제들

공개 메소드들

메소드 설명
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