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.
|
feedback
|
|
Try adding an event handler to the A code example, based on an MSDN Forum post
| |||||||||
feedback
|
|
You have to override the ProcessCmdKey method in the listbox control. Create a new class, derive it from listbox, then override the ProcessCmdKey. | |||
|
feedback
|