Question How to resize label?

raysefo

Well-known member
Joined
Jul 21, 2010
Messages
207
Programming Experience
Beginner
Hi,

I m new to windows forms. I dragged a label on the form and I would like to resize it but could not manage.

Any help please?

Thanks in advance.

Best Regards
 
By default, the AutoSize property of a Label is True, so the Location stays in the same position while the Size changes according to the Text. If you want to be able to set the Size yourself then you must first set AutoSize to False.
 
Back
Top