I have a listbox control in a windows app and I want to disable the default right and left arrow keydown event triggers. Currently when you press right or left arrows the selected item travels up and down the listbox. I want to add my own actions.

link|improve this question

60% accept rate
feedback

2 Answers

up vote 4 down vote accepted

Try adding an event handler to the ListBox.KeyDown event. If the key pressed is an arrow key, set the Handled flag of the KeyPressEventArgs to true to prevent further processing.

A code example, based on an MSDN Forum post

private void listBox1_KeyDown(object sender, System.Windows.Forms.KeyEventArgs e)
{
  If (e.KeyCode == Keys.Right || e.KeyCode == Keys.Left)
    e.Handled = true;
}
link|improve this answer
I believe that since these keys are considered System Key bindings, this will not work. I think you must use ProcessCmdKey – icemanind Jul 22 '11 at 20:38
Yeah the default event action still occurs after the KeyDown method processes. I'll look into the processCmdKey method. – Paul Jul 22 '11 at 20:48
@Paul: Do you set the Handled flag to true to prevent further processing? – Anders Abel Jul 22 '11 at 20:49
You're right Anders. That worked perfectly. My bad! – Paul Jul 22 '11 at 21:10
feedback

You have to override the ProcessCmdKey method in the listbox control. Create a new class, derive it from listbox, then override the ProcessCmdKey.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.