I have a WindowsForm
that contains a lot of UserControl
.
Each UserControl
has a PictureBox
, a few TextBox
and a Button
.
As soon as my program loads, my first TextBox
is Highlighted in blue and I don't want that.
In fact I don't want anything to be selected at all.(Buttons
, TextBox
etc..)
I've looked into the properties but I can't find exactly how to totally remove this 'Feature'.
All my TextBox
are ReadOnly
but can become Write/Read
while the program is running.
Any Idea how i could do this ?
Thanks in advance.
Update
Changing the TabStop
properties to false did part of the job since it doesn't allow selection with tab at all. But I don't want to block the user from using tab to navigate between boxes I just don't want any selection when I run the program. Is there another way ?
Thanks for your time again.