Is there a way to make a UserControl unfocussable?
EDIT: So SetStyle(ControlStyles.Selectable, false)
SetStyle(ControlStyles.Selectable, false)
is the way to go. But still there is diffe
In your constructor after InitializeComponent() you need to call SetStyle and set the ControlStyles.Selectable style to false:
InitializeComponent()
false
SetStyle(ControlStyles.Selectable, false);