我在绕过MS Office PowerPoint 2007中的Application_PresentationBeforeSave事件时遇到一些问题
void Application_PresentationBeforeSave(Microsoft.Office.Interop.PowerPoint.Presentation Pres,ref bool Cancel)
在这种情况下,我需要使用文件的byte []内容更新web服务。 但此时,文件未保存。没有名为PresentationAfterSave fx的事件被调用。
我需要一些方法在保存之后再次调用该事件。 有些人说我需要创建一个Thread,因为保存然后更新或者其他方面。这是迄今为止最糟糕的解决方案(但恰恰是唯一的解决方案),是否有更好的解决方案?
// dennis
答案 0 :(得分:0)
我认为,PresentationSave而不是PresentationBeforeSave事件正是您所寻找的。 p>