How to resize controls size automatically when form resizing

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi all,

I'm having a situation for a windows application, where i don't want to
strict the form size or windows resolution, Is there a simple solution to do
that with out affecting code programmatically? There is also a problem for
font sizes which will differs between different resolutions

Please help
 
You can use Form.AutoScale and AutoScaleBaseSize properties to automatically
scale your controls as the Form resizes or the resolution changes.
 
Back
Top