views:

243

answers:

2

I'm building a .NET 3.5 sp1 WPF app for use on 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.

A: 

Create a desktop shortcut to a batch file that starts both your application and the Windows on-screen keyboard?

Heinzi
+2  A: 

Like Will said...just start the process.

System.Process.Start("osk")
dustyburwell