我已经看到,通过Visual Studio Extensibility工具,您可以添加自定义命令,如灯泡,工具窗口(如“属性”面板)等等......
基本上我正在尝试创建一个自定义工具窗口,而不是从视图 - >打开其他Windows菜单,但是来自我在自己的UI上创建的按钮。 为此,我尝试创建一个委托,它基本上调用我的 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 方法之外,所有这些代码都已预先填充。
如何在不通过View调用的情况下使用不包含null属性的包对象 - &gt; Windows选项卡?
那么正确的方法是什么?
答案 0 :(得分:2)
您不应该自己调用Initialize - Visual Studio在实例化您的包时会自动调用它。
要显示工具窗口,请查看在向项目添加工具窗口时默认创建的ShowToolWindow方法:
ToolWindowPane window = this.package.FindToolWindow(typeof(ResourceAnalysisPaneResults), 0, true);
IVsWindowFrame windowFrame = (IVsWindowFrame)window.Frame;
windowFrame.Show();