WindowsFormsHost.ScaleChild(Vector) Method

Definition

Scales the hosted Windows Forms control, and tracks the scale factor.

protected:
 virtual System::Windows::Vector ScaleChild(System::Windows::Vector newScale);
protected virtual System.Windows.Vector ScaleChild (System.Windows.Vector newScale);
abstract member ScaleChild : System.Windows.Vector -> System.Windows.Vector
override this.ScaleChild : System.Windows.Vector -> System.Windows.Vector
Protected Overridable Function ScaleChild (newScale As Vector) As Vector

Parameters

newScale
Vector

The new scale factor.

Returns

A Vector which represents the scale factor applied to the hosted Windows Forms control.

Remarks

Windows Forms controls do not support scaling in the same way as WPF elements. For example, scaling a Windows Forms control from a factor of 1 to a factor of 0.5 and back to a factor of 1 does not, in general, recover the original size of the control. For more information, see Layout Considerations for the WindowsFormsHost Element.

Override the ScaleChild method to provide custom scaling behavior for the hosted Windows Forms control.

Applies to