Hi guys,
i have a custom browser built with the newest CEF,
any ideas how could i add an onscreen keyboard to it?
Many thanks!
Disclosure Statement: This site contains affiliate links, which means that I may receive a commission if you make a purchase using these links. As an eBay Partner, I earn from qualifying purchases.
Onscreen keyboard
- salvadordf
- Posts: 4564
- Joined: Thu Feb 02, 2017 12:24 pm
- Location: Spain
- Contact:
Re: Onscreen keyboard
Hi,
I don't have a windows tablet/phone so I can't test that option but other CEF projects use command line switches to activate it.
https://github.com/cztomczak/cefpython/issues/57
https://github.com/cefsharp/CefSharp/issues/1691
Those web pages say that you should use :
https://peter.sh/experiments/chromium-c ... -switches/
I don't have a windows tablet/phone so I can't test that option but other CEF projects use command line switches to activate it.
https://github.com/cztomczak/cefpython/issues/57
https://github.com/cefsharp/CefSharp/issues/1691
Those web pages say that you should use :
- --disable-usb-keyboard-detect
- --touch-events=enabled
- GlobalCEFApp.AddCustomCommandLine('--disable-usb-keyboard-detect');
- GlobalCEFApp.AddCustomCommandLine('--touch-events', 'enabled');
https://peter.sh/experiments/chromium-c ... -switches/
Re: Onscreen keyboard
Hi!
thanks a lot!
is this a Chrome built in keyboard or is it the Windows system keyboard?
thanks a lot!
is this a Chrome built in keyboard or is it the Windows system keyboard?
- salvadordf
- Posts: 4564
- Joined: Thu Feb 02, 2017 12:24 pm
- Location: Spain
- Contact:
Re: Onscreen keyboard
I'm not sure but for the switch's name it looks like the Windows system keyboard.
Re: Onscreen keyboard
Yes,
looks like it is the Windows built in keyboard.
looks like it is the Windows built in keyboard.