How to customize the Label and set the property of AutoSize to False?

  • Thread starter Thread starter Ryou kaihou
  • Start date Start date
R

Ryou kaihou

Hello All,

As we known, in Visual Stdio 2003 or 2005, the property of Autosize is set
to True by defaut, how can I customize this and set property of Autosize to
False?

Any ideas?

Thanks
 
You can set the property in the form designer. Or in some appropriate event
like Form_Load:

label1.AutoSize = false; //C#

Label1.AutoSize = False 'VB
 
Back
Top