有没有办法以编程方式打开并使用.NET显示Windows 7屏幕键盘?我找到了两个可能的解决方案,但都没有工作。我的应用程序是WPF / .NET 4。
第一种方法来自以下两个链接,但它们要求屏幕键盘在使用FindWindow Win32调用时已经打开:
http://hot-virtual-keyboard.com/development/q1/ Finding the class name of the On-Screen Keyboard?
我尝试过的另一条路线就是这个(Show up the On Screen keyboard if the user sets the focus on a textfield. WPF with .Net 4 Client profile):
Process.Start("osk.exe");
但是这个电话会失败,并显示“无法启动屏幕键盘”的消息框。
有什么想法吗?