My problem I have few buttons in a form. I need to trigger those button on mouse click or the alt + the alphabet used as the hot key in it. I added & in front of the alphabet in the name property of the button. But my problem is that even if the alphabet is pressed without the use of alt key the below action is triggered. The below is the method which triggers the button named FirstMatch.
public void firstMatch_Button_Click(object sender, EventArgs e)
{
Action_Raised(sender, "First Match");
}