我正在为Word开发一个VSTO插件。在功能区中有一个切换按钮,用于查看和隐藏任务窗格。我做了很多功能,但问题是当我们处理多个文档时没有添加任务窗格。它仅在一个文档中显示任务窗格,切换按钮也会影响另一个文档中的另一个任务窗格。
我使用此过程在每个文档中创建一个任务窗格,但它不起作用:
public void AddAllCalendarTaskPanes()
{
if (Globals.WritingAssistant.Application.Documents.Count > 0)
{
if (this.Application.ShowWindowsInTaskbar == true)
{
foreach (Word.Document _doc in this.Application.Documents)
{
AddCalendarTaskPane(_doc);
}
}
}
}