Menu navigation with C#

  • Thread starter Thread starter Valerie Hough
  • Start date Start date
V

Valerie Hough

Say I have a context menu structure like:

Top Level 1
Sub Level 1a
Sub Level 1b
TopLevel 2
Sub Level 2a
Sub Level 2b
SubLevel 2b-1
SubLevel 2b-2
item1
item2
 
A poor-man's way of doing this would be to 'force' the mnemonic keys for
each level into the keyboard buffer, at timed intervals to allow for the
menu to open... you can do this with SendKeys, in the VB compatibility
namespace I believe.
 
Back
Top