I\'m writing a WPF application for a Windows 8 tablet. It\'s full windows 8 and not ARM/RT.
When the user enters a textbox I show the on screen keyboard using the fo
try this one
System.Diagnostics.Process.Start("TabTip.exe");
I hope this will help you.
Well I would try something like this
Process myProcess = Process.Start(@"C:\Program Files\Common Files\Microsoft Shared\ink\TabTip.exe"); myProcess.CloseMainWindow(); myProcess.Close();