Create an event handler that removes focus from the list and is signed by the Event GotFocus event handler. Thus, the user will never be able to select anything in the list. The following line of code does this using the built-in anonymous method:
txtBox.GotFocus + = (anonSender object, EventArgs anonE) => {txtBox.Parent.Focus (); };
* Edit : code explanation
ItsMe source share