IsInputKey- not available

  • Thread starter Thread starter dixit
  • Start date Start date
D

dixit

hi all,

i am new to net cf. I have done a simple ui using .net full framework.
In that, in order to get
keypress event for some special keys like arrow, tab, space etc.. i
have
overridden IsInputKey() for button, radiobutton, checkbox and for some
other controls, and it is working fine...

But now i need to move my ui to .net compact framework, but i see there
is no IsInputKey()
method available for the controls to override...what am i suppose to do
now? is there any
workaround??

thanks in advance,
Dixit
 
dixit,

Check the KeyDown event for the keycode being pressed and see if it
will trap all the keycodes you want.
 
dixit,

Check the KeyDown event for the keycode being pressed and see if it
will trap all the keycodes you want.

thanks for the reply, i have checked it using the emulator, but i dont
get events
for radiobuttons, rest of the controls are fine.

Dixit
 
Back
Top