How to raise a System KeyDown event manually in .Net Compact framework 3.5
Posted
by Sundar
on Stack Overflow
See other posts from Stack Overflow
or by Sundar
Published on 2010-04-06T07:17:03Z
Indexed on
2010/04/06
7:23 UTC
Read the original article
Hit count: 397
compact-framework
I have developed a custom keypad using resco controls in my application I have currently handled the backspace button click event with the following code
private void customKeyboard1_KeyboardKeyUp(object sender, Resco.Controls.Keyboard.KeyPressedEventArgs e) { if (e.Key.Text == "Backspace") { Resco.Controls.Keyboard.CustomKeyboard.SendBackspace(); e.Handled = true; } }
This works fine with the edit boxes in the application but not working in edit boxes in the web pages (for eg. on gmail username text box).
so is there any way to raise the KeyDown event manually
© Stack Overflow or respective owner