HwndHost::MeasureOverride Method (Size)
Returns the size of the window represented by the HwndHost object, as requested by layout engine operations.
Assembly: PresentationFramework (in PresentationFramework.dll)
protected: [SecurityCriticalAttribute] [SecurityTreatAsSafeAttribute] virtual Size MeasureOverride( Size constraint ) override
Parameters
- constraint
-
Type:
System.Windows::Size
The size of the HwndHost object.
Security Note
|
|---|
This type or member is not available in the Internet security zone. |
Notes to Implementers:
In Win32, a window is expected to be the size requested by layout at the time the window is created. Derived classes should override this method only if they have additional information regarding required window size.
The specific implementation here is already an override of the FrameworkElement virtual member, which bases size constraints on the window handle and treats a zero value in one or more dimensions as a non-constraint. The WindowsFormsHost class also overrides a MeasureOverride implementation that will result in a clip of the form if it is too large.
in order to adjust the layout (by having the layout engine act upon the hosted region). Associated enumeration: UnmanagedCode
Available since 3.0
