Expanding a mainmenu in c# cf app with no mouse/pointer

  • Thread starter Thread starter lewis
  • Start date Start date
L

lewis

I have encountered a problem with my c# compact framework app where i
have created a main menu which works perfectly within the emulator,
however, the device i am developing for has no mouse or pointer input.
is there any way of getting the focus to the menu via keys only? like
pressing alt in most windows apps?
thanks in advance!
lewis
 
A possible solution would be to add key press handling code to your form
(Ensure you are running SP2 which has improved support for keyboard events),
and programmatically raise the menu by simulating a mouse tap e.g. P/Invoke
mouse_event.

Peter
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top