When I run another .exe from my application, it starts in the background and does not show the application on top of the screen, and does not show the tablet’s home screen, it works fine in normal operating mode, but when I launch it in Windows 10 Tablet mode, then it not displayed on top, it starts in the background.
I used myWindow.TopMost = true;, but it does not work as intended in Windows 10 Tablet mode.
Code used to run exe file
Process p = new Process();
p.StartInfo.RedirectStandardOutput= true;
p.RedirectStandardInput = true;
p = Process.Start("myApp.exe");
p.WaitForExit();
The exe I am accessing (start) is my own exe application (this is not a system application), I am running the application on Windows 10.
It doesn't work from the top in Tablet mode (and I only target my application on tablets).
Any help is appreciated.!