我正在开发一个winform应用程序,每次按下按钮时都会打开一个新单词doc并关闭旧文档。问题是:如果用户关闭MS Word应用程序而不是文档,我怎样才能退出winform应用程序?我尝试了word_DocumentBeforeClose()
,但是当单词application或word document被关闭时就会发生。
这是我正在使用的代码:
wordDocument.Close(Microsoft.Office.Interop.Word.WdSaveOptions.wdDoNotSaveChanges);
word.DocumentBeforeClose += new ApplicationEvents4_DocumentBeforeCloseEventHandler(word_DocumentBeforeClose);
wordDocument = word.Documents.Open(FileName);
由于