Windows 7 touchscreen keyboard in a WPF app
I'm building a .NET 3.5 sp1 WPF app for use o开发者_Go百科n Windows 7 - is there a way to place the touchscreen keyboard in my application?
NOTE: In contrast to other similar questions I'm not looking to embed the keyboard in my app, I just want to start the keyboard and use it for text entry.
Like Will said...just start the process.
System.Process.Start("osk")
Create a desktop shortcut to a batch file that starts both your application and the Windows on-screen keyboard?
精彩评论