How can I embed a PowerPoint presentation into a WPF application without opening another window?

后端 未结 4 685
攒了一身酷
攒了一身酷 2020-12-16 02:30

Currently I have a WPF application in C#, but I\'m finding it to be incredibly difficult to find any useful ways to embed a PowerPoint presentation into my window.

O

4条回答
  •  無奈伤痛
    2020-12-16 03:24

    Launching the presentation via the command line with the /s flag will play the slideshow without launching the splash screen.

    powerpnt.exe /s c:\path\to\your\presentation.pptx
    

    I would try that in concert with some of the WPF embed solutions you've mentioned or taking a look at this approach.

    I know little about WPF, so hopefully someone can provide a better answer incorporating all these pieces.

提交回复
热议问题