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.
shiftこんにちは、 +tabを押すと背景色が変化して前のテキスト ボックスにフォーカスする必要がある Windows アプリケーションがあります。
これを試して、
private void Form1_KeyDown(object sender, KeyEventArgs e) { if (e.KeyCode == Keys.Tab && e.Shift) { } }