I've developed a Winforms application using vb.net 4.6.1 and I'm trying to have the forms scale based on the Scale and layout percentage as shown in the Windows 10 display options. Currently I have users that run 125%, 150% and 175% which can zoom the window so large that the user's can't see the bottom 1/3 of the form.
I'm not at all familiar with the autoscaling functionality so I've done some reading and simply confused myself even more. I'm not even sure if autoscaling will react when changing the size percentage rather than the resolution.
Currently I've set the following properties on my base form:
- AutoScaleMode: DPI (Also tried Font and None)
- AutoSize: True
- AutoSizeMode: GrowAndShrink
None of these settings seems to affect the size of the form when loaded at 125%, 150% or 175% size percentage. If anyone has some insight on this I would be most grateful.