我正在开发一个 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);
谢谢