0
votes

I am developing one UWP app where I want on screen to be launched on button click. I want to deploy app in surface tab. Keyboard is getting visible in Tablet mode when text box is being focused but not in desktop mode. In UWP System.Diagnostics.Process.Start(".exe") is also not permissible. So ultimately I am thinking to use button to launch on screen keyboard. Is there any way to do that? Kindly helping me out?

1
There is no API for the opening on-screen keyboard. Source: Programatically open On-Screen Keyboard in UWPVijay Nirmal

1 Answers

0
votes

It seems you can run .exe in UWP using FullTrustProcessLauncher. So run osk.exe to open on-screen keyboard. Check the above link for more info.