When TreeView (WinForms) has focus pressing key selects the node whose text begins with a key character.
Is there a way to avoid this?
First thing that came to my mind was to create Control that inherits from TreeView, and override IsInputKey so that it returns false in all undesirable cases.
But it doesn't work. Is there any way to override this behavior?