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

Popular posts from this blog

qt - switch/case statement in C++ with a QString type -

python - sqlite3.OperationalError: near "REFERENCES": syntax error - foreign key creating -

Python's equivalent for Ruby's define_method? -