When i open a form in visual studio 2005 (c#) the designer automaticaly resize the form and move/resize controls without touching the designer at all. The source file is cha
This is due to AutoScaleMode
-property. Your forms have probably been designed with a different DPI or Font settings than you have now in Windows display settings. AutoScaleMode
-property has 4 different possible values : Dpi
, Font
, Inherit
or None
. In Dpi
or Font
mode, your forms and controls will be automatically resized depending on windows display settings.
So, set the AutoScaleMode
-property to None
in all your forms and controls and they won't be automatically resized anymore. Try to design your forms in order to let sufficient space in every controls so that text will fit even if text size is set to 125%.