C
cody
When using .NET 1.1, we could use:
menuitem.Text = "Fullscreen\tF"; // see the tabulator inside
which displayed the key F as a shortcut in the menuitem which now
doesn't work anymore. We cannot assign F as a shortcut directly because
it is an invalid value for the ShortcutKeys enumeration.
Do we have to use ProcessCmdKey to check for that key which works well
but we cannot display it in the menuitem properly.
Is this a known bug? Any workarounds?
menuitem.Text = "Fullscreen\tF"; // see the tabulator inside
which displayed the key F as a shortcut in the menuitem which now
doesn't work anymore. We cannot assign F as a shortcut directly because
it is an invalid value for the ShortcutKeys enumeration.
Do we have to use ProcessCmdKey to check for that key which works well
but we cannot display it in the menuitem properly.
Is this a known bug? Any workarounds?