To fasten user interaction, expand the menu through a key event and then use a shortcut key to invoke menu command. private void Form1_KeyDown(object sender, KeyEventArgs e) { if(e.KeyCode == Keys.Down) helloToolStripMenuItem.ShowDropDown(); }