0

我正在开发一个 winform 应用程序,每次按下按钮时都会打开一个新的 word 文档并关闭旧的。问题是:如果用户关闭 MS Word 应用程序而不是文档,如何让 winform 应用程序退出?我试过word_DocumentBeforeClose()了,但是当 word 应用程序或 word 文档关闭时会发生这种情况。

这是我正在使用的代码:

wordDocument.Close(Microsoft.Office.Interop.Word.WdSaveOptions.wdDoNotSaveChanges); 
word.DocumentBeforeClose += new ApplicationEvents4_DocumentBeforeCloseEventHandler(word_DocumentBeforeClose);
wordDocument = word.Documents.Open(FileName);

谢谢

4

1 回答 1

0

您是否尝试过关注word.Quit事件?

于 2012-10-29T16:15:31.830 回答