0

我已经看到,通过Visual Studio Extensibility工具,您可以添加自定义命令,如灯泡,工具窗口(如属性面板)等在...在Visual Studio中打开一个自定义工具窗口,而不从视图菜单中调用它

基本上我试图创建一个自定义工具窗口,它不是从视图打开 - >其他Windows菜单,而是从我在自己的用户界面上创建的按钮中打开的。 为此,我尝试创建一个委托,该委托基本上调用了我的PaneResultsPackage类,然后调用应该引发所有逻辑的Initialize()方法。但是,它不会生成窗格,因为包对象看起来是空的。

这基本上是类:

[PackageRegistration(UseManagedResourcesOnly = true)] 
    [InstalledProductRegistration("#110", "#112", "1.0", IconResourceID = 400)] // Info on this package for Help/About 
    [ProvideMenuResource("Menus.ctmenu", 1)] 
    [ProvideToolWindow(typeof(ResourceAnalysisPaneResults))] 
    [Guid(ResourceAnalysisPaneResultsPackage.PackageGuidString)] 
    [SuppressMessage("StyleCop.CSharp.DocumentationRules", "SA1650:ElementDocumentationMustBeSpelledCorrectly", Justification = "pkgdef, VS and vsixmanifest are valid VS terms")] 
    public sealed class ResourceAnalysisPaneResultsPackage : Package 
    { 
     /// <summary> 
     /// ResourceAnalysisPaneResultsPackage GUID string. 
     /// </summary> 
     public const string PackageGuidString = "29677396-e861-4672-804e-75cc557f1874"; 

     /// <summary> 
     /// Initializes a new instance of the <see cref="ResourceAnalysisPaneResults"/> class. 
     /// </summary> 
     public ResourceAnalysisPaneResultsPackage() 
     { 
      // 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. 
     } 

     #region Package Members 

     /// <summary> 
     /// 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 initialization code that rely on services provided by VisualStudio. 
     /// </summary> 
     protected override void Initialize() 
     { 
      ResourceAnalysisPaneResultsCommand.Initialize(this); 
      base.Initialize(); 
     } 

     ** Here is the call to the delegate** 
     public void OnSchemaAnalyzed(object source, EventArgs e) 
     { 
      Initialize(); 
     } 

     #endregion 
    } 

所有这些代码预先填充除了OnSchemaAnalyzed方法是我创建的委托。

如何通过视图 - > Windows选项卡调用不包含空属性的包对象?

那么正确的做法是什么?

回答

1

您不应该调用Initialize自己 - 当实例化您的包时,Visual Studio会自动调用它。

要显示的工具窗口,看看默认创建的ShowToolWindow方法,当你添加一个工具窗口到您的项目:

ToolWindowPane window = this.package.FindToolWindow(typeof(ResourceAnalysisPaneResults), 0, true); 
IVsWindowFrame windowFrame = (IVsWindowFrame)window.Frame; 
windowFrame.Show(); 
+0

你是说我应该把这些代码我的脑海中OnSchemaAnalyzed而不是调用的Initialize();方法? – user3587624

+0

@ user3587624是的。 –

+0

工作,谢谢! – user3587624

相关问题