gpt4 book ai didi

c# - Word Document.SelectionChange 事件不会触发

转载 作者:太空狗 更新时间:2023-10-30 01:06:18 25 4
gpt4 key购买 nike

下面是我的代码(为提高可读性而简化的版本),来自基于 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

最佳答案

你为什么不用

Globals.ThisAddIn.Application.WindowSelectionChange +=
new ApplicationEvents4_WindowSelectionChangeEventHandler(Application_WindowSelectionChange);

而不是将您的 Microsoft.Office.Interop.Word.Document 对象转换为 Microsoft.Office.Tools.Word.Document

关于c# - Word Document.SelectionChange 事件不会触发,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15954166/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com