我正在运行以下代码以从WPF应用程序打开PowerPoint文件。该文件打开,但在点击幻灯片后,我提示的内容是“我们无法保存幻灯片,因为它是只读的” - 即使文件未设置为只读,也是我不想保存它 - 只是玩它。有没有人有任何见解所以我可以玩而不试图保存它?
Microsoft.Office.Interop.PowerPoint.Application pptApp = new Microsoft.Office.Interop.PowerPoint.Application(); Microsoft.Office.Interop.PoIwerPoint.Presentation presentation = pptApp.Presentations.Open2007(文件名, Microsoft.Office.Core.MsoTriState.msoFalse, Microsoft.Office.Core.MsoTriState.msoFalse, Microsoft.Office.Core.MsoTriState.msoFalse,Microsoft.Office.Core.MsoTriState.msoTrue); Microsoft.Office.Interop.PowerPoint.SlideShowSettings sst = presentation.SlideShowSettings; sst.ShowType = Microsoft.Office.Interop.PowerPoint.PpSlideShowType.ppShowTypeSpeaker; sst.Run();