UWP : Need to disable on-screen-keyboard on textbox click
Because I need to Invoke third Party on-screen-keyboard.
Tried Below Code....But I was not able to disable on-screen-keyboard.
PreventKeyboardDisplayOnProgrammaticFocus="True"
Both are getting Invoked Microsoft on-screen-keyboard and Third Party Keyboard.
Its not Working, But I tried "ishittestvisible=false"
Its Working, But All Mouse Events are Blocked.
Any of the Solution is Fine..1. either disable on-screen-keyboard or 2.after making ishittestvisible=false
Mouse Events Should Work.
The code below works for me in a WinUI 3 (Windows App SDK) application. It should work for UWP as well. It completely prevents the keyboard from showing, without blinking/flickering.
args.TryCancel()
does the job alone but when the app loses focus, the keyboard appears, sosender.TryHide()
is needed to eliminate this bad-looking behavior.