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.
如何在编辑模式下检测 datagridviewcell 中的键组合(Shift + Tab)
试试这个例子:
private void Main_tab_KeyDown(object sender, KeyEventArgs e) { if (e.Shift && (e.KeyCode.Equals(Keys.Down))) { // do something } }