try to create HotKeys for my forms
code
private void FormMain_KeyPress(object sender, KeyPressEventArgs e) { if (e.KeyChar ==
try this for combination of Ctrl + N,
if (e.Modifiers == Keys.Control && e.KeyCode == Keys.N) { MessageBox.Show("e"); }