使用Microsoft.Office.Interop.Word从c#打开docx并在关闭msword后保存更改

时间:2016-05-13 16:08:17

标签: c# ms-word docx savechanges

我使用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的操作并将其保存到服务器。

任何想法?

0 个答案:

没有答案