我目前有一个visual studio插件,并创建了一个新的输出窗口窗格,我可以成功写入文本。但是,当输出窗口未打开或最小化时,当我在窗格上调用Activate()方法时,它不会打开(弹出)。我有什么想法可以实现这个目标吗?
答案 0 :(得分:4)
如果您使用加载项向导创建了加载项,则应该具有如下所示的Exec()方法。我添加了两行,导致“输出”窗口打开并变为可见,无论它是最初关闭还是最小化。我在VS2008和VS2010中进行了测试。
public void Exec(string commandName, vsCommandExecOption executeOption, ref object varIn, ref object varOut, ref bool handled)
{
handled = false;
if(executeOption == vsCommandExecOption.vsCommandExecOptionDoDefault)
{
if(commandName == "AddinTest.Connect.AddinTest")
{
// Find the output window.
Window outputWindow = _applicationObject.Windows.Item(Constants.vsWindowKindOutput);
// Show the window. (You might want to make sure outputWindow is not null here...)
outputWindow.Visible = true;
handled = true;
return;
}
}
}