Show & hiding the Windows 8 on screen keyboard from WPF

后端 未结 8 1730
我寻月下人不归
我寻月下人不归 2020-12-03 08:17

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

相关标签:
8条回答
  • 2020-12-03 09:02

    try this one

    System.Diagnostics.Process.Start("TabTip.exe");
    

    I hope this will help you.

    0 讨论(0)
  • 2020-12-03 09:03

    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();
    
    0 讨论(0)
提交回复
热议问题