compact framework - How to interact with keypad buttons in my application? -


I am developing a Windows CE5.0 application.
This application has to be deployed in a handheld device.
I want to print something by pressing a key on my device's keypad.

The device has some keys like mobile phones or any other device.
I do not know how to accept how to interact with important inputs or keys in my application

Please help, thank you.

Use the Key Down Event.

  Keydown = (O, S) => {If (s.KeyCode == Keys.Enter) {// anytime; }};    

Comments