WindowsFormsHost.ScaleChild(Vector) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.