Note

Access to this page requires authorization. You can try signing in or .

Access to this page requires authorization. You can try .

DockPanel.LastChildFill Property

Definition

Namespace:
System.Windows.Controls
Assembly:
PresentationFramework.dll

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.

Gets or sets a value that indicates whether the last child element within a DockPanel stretches to fill the remaining available space.

public:
 property bool LastChildFill { bool get(); void set(bool value); };
public bool LastChildFill { get; set; }
member this.LastChildFill : bool with get, set
Public Property LastChildFill As Boolean

Property Value

true if the last child element stretches to fill the remaining space; otherwise false. The default value is true.

Remarks

If you set the LastChildFill property to true, which is the default setting, the last child element of a DockPanel always fills the remaining space, regardless of any other dock value that you set on the last child element. To dock a child element in another direction, you must set the LastChildFill property to false and must also specify an explicit dock direction on the last child element.

Dependency Property Information

Item Value
Identifier field LastChildFillProperty
Metadata properties set to true AffectsArrange

Applies to


Feedback

Was this page helpful?