以下是基于VSTO的Word插件的代码(可读性简化版)。
问题是,如果我打开了两个文档,例如文档和模板,我的插件有助于开发模板并正常工作,直到模板关闭并在同一个Word实例中重新打开(文档文件保留Word活)。一旦发生这种情况,即使连接了侦听器(使用调试器确认),也不会收到SelectionChange事件。
此代码有什么问题吗?是否有其他方式来附加选择更改事件?
void Application_DocumentOpen(Word.Document Doc)
{
// this method gets called as intended
Document vstoDoc = Globals.Factory.GetVstoObject(doc);
vstoDoc.SelectionChange += new Microsoft.Office.Tools.Word.SelectionEventHandler(ThisDocument_SelectionChange);
}
private void Application_DocumentBeforeClose(Word.Document doc, ref bool Cancel)
{
// this one also gets called as intended
Document vstoDoc = Globals.Factory.GetVstoObject(doc);
vstoDoc.SelectionChange -= new Microsoft.Office.Tools.Word.SelectionEventHandler(ThisDocument_SelectionChange);
}
void ThisDocument_SelectionChange(object sender, SelectionEventArgs e)
{
// this doesn't get called if the document is closed and open again within the same Word instance
Log("Selection changed");
}
更新:这似乎是VSTO错误。
附加到其他事件工作正常,我可以使用ContentControlOnEnter / Exit:
vstoDoc.SelectionChange += ThisDocument_SelectionChange; // doesn't work
vstoDoc.ContentControlOnEnter += vstoDoc_ContentControlOnEnter; // works
vstoDoc.ContentControlOnExit += vstoDoc_ContentControlOnExit; // works
答案 0 :(得分:5)
为什么不使用
Globals.ThisAddIn.Application.WindowSelectionChange +=
new ApplicationEvents4_WindowSelectionChangeEventHandler(Application_WindowSelectionChange);
而不是将Microsoft.Office.Interop.Word.Document
对象转换为Microsoft.Office.Tools.Word.Document