简体   繁体   中英

On-Screen Keyboard WPF

I would like to invoke On-Screen Keyboard on button click in WPF. It is possible and can I do this in C#/XAML ?

I just want to have one button, that's invoke to open and another one to close keyboard.

This will help you start the default On-Screen keyboard,hence there wont be any effort to create one.

Process.Start(Environment.GetFolderPath(Environment.SpecialFolder.System) + Path.DirectorySeparatorChar + "osk.exe");

or just give : Process.Start("C:\\\\Windows\\\\System32\\\\osk.exe");

or Process.Start("osk.exe");

Not : if platform is 64 bit debug in x64

osk = on screen keyboard !

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM