我有从我的 C# 应用程序打开一个 doc 文件的代码:
var wordApp = new Microsoft.Office.Interop.Word.Application();
wordApp.Documents.Open(FileName);
wordApp.Visible = true;
wordApp.ActiveWindow.View.FullScreen = true;
var events = (Microsoft.Office.Interop.Word.ApplicationEvents4_Event) wordApp;
events.DocumentOpen += delegate { MessageBox.Show("opended!"); };
events.Quit += delegate { MessageBox.Show("closed!"); };
但是文件打开了,我没有得到MessageBox.Show("opended!")
但MessageBox.Show("closed!")
工作正常。如何解决这个问题?