Being Pedantic - Do your buttons have a mnemonic?
Last updated by Brady Stroud [SSW] 8 months ago.See historyA mnemonic for a button is the letter which has an underscore, and the user can press the button using Alt-<char>
.
In Windows Applications, it is quite easy to assign a mnemonic to a button with the "&" character.
So for the case above, the text would be:
btnAbout.Text = "&About"
Learn more about the Mnemonic property on Windows Desktop.