gpt4 book ai didi

c# - visual studio Word Addin 需要超过 15 秒才能关闭 word

转载 作者:行者123 更新时间:2023-11-30 18:27:08 25 4
gpt4 key购买 nike

我使用 visual studio 2012 开发了 Word 插件。.net 框架是 4.5。它工作正常。唯一的问题是,当用户关闭 word 文件时,在我们单击“x”后,word 大约需要 15 秒才能关闭。

它在我的机器上立即关闭。我的机器配置如下:- .Net 框架 4.5.2。- VSTo 10.0.50903 和- 操作系统是 windows 7 64 位。

虽然客户端计算机需要一些时间才能关闭(15 秒或更长时间)。客户端具有以下配置。- Visual Studio 2010 tools for office runtime x64 版本为 10.0.50325.00- 他们访问 word 的 Citrix 服务器操作系统。 Windows Server 2008 R2 企业版 SP1 64 位- .Net Framework 版本? 4.5.2

他们没有安装任何其他插件。

谢谢!

最佳答案

尝试拦截 OnFormClosing 事件并执行以下操作

protected override void OnFormClosing(FormClosingEventArgs e)
{
yourWordObject.Quit();
System.Runtime.InteropServices.Marshal.FinalReleaseComObject(yourWordObject);
base.OnFormClosing(e);

}

关于c# - visual studio Word Addin 需要超过 15 秒才能关闭 word,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27289194/

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