Why is text in TextBox highlighted (selected) when form is displayed?

Viewed 90074

I have a form containing a TextBox in C# which I set to a string as follows:

textBox.Text = str;

When the form is displayed, why does the text in the texbox appear highlighted/selected?

6 Answers
Related