Is there a way to make a UserControl unfocussable?
EDIT:
So SetStyle(ControlStyles.Selectable, false)
is the way to go. But still there is diffe
Yes, the SetStyle(ControlStyles.Selectable, false); works only if you are inheriting from a control.
It will not work, if you are inheriting from a user control.
To get around the problem, I added a panel to the user control and docked the panel to "Fill". Added rest of the controls to the panel instead of the user control. It worked!