DockPanel.MeasureOverride(Size) 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.
Measures the child elements of a DockPanel prior to arranging them during the ArrangeOverride(Size) pass.
protected:
override System::Windows::Size MeasureOverride(System::Windows::Size constraint);
protected override System.Windows.Size MeasureOverride (System.Windows.Size constraint);
override this.MeasureOverride : System.Windows.Size -> System.Windows.Size
Protected Overrides Function MeasureOverride (constraint As Size) As Size
Parameters
Returns
A Size that represents the element size you want.
Remarks
A DockPanel determines its size by analyzing the sizing properties and Dock property value of its child elements. A child element can occupy all the space on the side where it is docked. Child elements that are docked to the Left
or Right
are granted all the vertical space for their entire width. Child elements that are docked to the Top
or Bottom
are granted all the horizontal space for their entire height.