In the MSDN documentation 2005:

.NET Framework Class Library
Control.Scale Method (SizeF)
Note: This method is new in the .NET Framework version 2.0.

Scales the control and all child controls by the specified scaling factor.

Namespace: System.Windows.Forms
Assembly: System.Windows.Forms (in system.windows.forms.dll)

Visual Basic (Usage)
Dim instance As Control
Dim factor As SizeF

instance.Scale(factor)

I have a usercontrol that's on a panel.
I want to scale the form, panel and usercontrol

Is there another way ?


Thanks