private void rtbContent_KeyDown(object sender, KeyEventArgs e) { if (e.KeyCode == Keys.S && e.Control) { if (e.Shift) { } else { tbtnSave_Click(this, EventArgs.Empty); e.Handled = e.SuppressKeyPress = true; } } }