Inheritance: Microsoft.VisualStudio.Shell.Package
コード例 #1
0
ファイル: EditorPane.cs プロジェクト: hkopparru/VSPlugin
 /// <summary>
 /// Constructor that calls the Microsoft.VisualStudio.Shell.WindowPane constructor then
 /// our initialization functions.
 /// </summary>
 /// <param name="package">Our Package instance.</param>
 public EditorPane(ServiceProvider service, VSNDK_PackagePackage package, string fileName, IVsTextLines textBuffer)
     : base(null)
 {
     _thisPackage = package;
     _fileName = fileName;
     _textBuffer = textBuffer;
     _service = service;
 }
コード例 #2
0
ファイル: EditorPane.cs プロジェクト: djgreastki1/VSPlugin
 /// <summary>
 /// Constructor that calls the Microsoft.VisualStudio.Shell.WindowPane constructor then
 /// our initialization functions.
 /// </summary>
 /// <param name="package">Our Package instance.</param>
 public EditorPane(ServiceProvider service, VSNDK_PackagePackage package, string fileName, IVsTextLines textBuffer)
     : base(null)
 {
     _thisPackage = package;
     _fileName    = fileName;
     _textBuffer  = textBuffer;
     _service     = service;
 }
コード例 #3
0
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="package"></param>
 public EditorFactory(VSNDK_PackagePackage package)
 {
     /// Set internal member variables
     this.editorPackage = package;
 }
コード例 #4
0
ファイル: EditorFactory.cs プロジェクト: blackberry/VSPlugin
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="package"></param>
 public EditorFactory(VSNDK_PackagePackage package)
 {
     /// Set internal member variables
     this.editorPackage = package;
 }