DockPanel.MeasureOverride(Size) Method

Definition

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

constraint
Size

A maximum Size to not exceed.

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.

Applies to