How can I determine in KeyDown that CtrlUp was pressed.
KeyDown
private void listView1_KeyDown(object sender, KeyEventArgs e) {
In the KeyEventArgs there are properties Ctrl, Alt and Shift that shows if these buttons are pressed.
KeyEventArgs