我使用Microsoft.Office.Interop.Word使用此代码打开我的docx:
Microsoft.Office.Interop.Word.Application ap = new Microsoft.Office.Interop.Word.Application(); Document document = ap.Documents.Open(System.Windows.Forms.Application.StartupPath + "\\MSWordFile.docx");
但我希望当用户保存并关闭打开的msword时,我的应用可以通过某些事件检测到它并执行类似getchanges的操作并将其保存到服务器。
任何想法?