Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
datagridview の keypress イベントで試してみましたが、うまくいきませんでした。datagridviewで上下左右の矢印キーが押されたことを検出するにはどうすればよいですか?
KeyDownイベントで試してください:
KeyDown
private void dgv1_KeyDown(object sender, KeyEventArgs e) { if (e.KeyCode == Keys.Up || e.KeyCode == Keys.Down || e.KeyCode == Keys.Left || e.KeyCode == Keys.Right) { //do stuff } }