1

I'm using Visual Studio to develop my application in C# and I have a little problem with one of my label like the below picture show :

enter image description here

My label go outside the window. I have no idea how I can make an auto line return on my label.

If someone have any idea ?

Thank you in advance !

PS : For French peoples, I know I have a typo on "enregistré" instead of "enregistrer".

Thomas Rollet
  • 1,573
  • 4
  • 19
  • 33

1 Answers1

3

Set your label's AutoSize property to false and expand your label manually. If neccessary, also apply Anchor properties to resize your label when your form gets resized.

Jure
  • 1,156
  • 5
  • 15