What I try to achieve is to show a PowerPoint Presentation directly without opening Powerpoint beforhand in a WPF Window. Right now I'm using this code to start the Presentation:
Process proc = new Process();
proc.StartInfo.FileName = @"C:\Program Files (x86)\Microsoft Office\Office14\POWERPNT.EXE";
proc.StartInfo.Arguments = " /s " + source.ToString();
proc.Start();
with the variable source being the path to the desired file. This Code opens the PowerPoint Presentation in Fullscreen, which would be fine, but my Application is running on a Touch Device with no Keyboard or Mouse connected. So I would like to be able to put a overlay above the presentation itself with a "Close"-Button for example.
I already found this topic Hosting external app in WPF window, but I'm having a hard time understanding what's actually going on there.
I hope someone can help me.
Thanks in advance.