Note

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

Access to this page requires authorization. You can try .

Dock Enum

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.

Specifies the Dock position of a child element that is inside a DockPanel.

public enum class Dock
public enum Dock
type Dock = 
Public Enum Dock
Inheritance

Fields

Name Value Description
Left 0

A child element that is positioned on the left side of the DockPanel.

Top 1

A child element that is positioned at the top of the DockPanel.

Right 2

A child element that is positioned on the right side of the DockPanel.

Bottom 3

A child element that is positioned at the bottom of the DockPanel.

Remarks

If you set the DockPanel.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 in another direction, you must set the DockPanel.LastChildFill property to false and must also set an explicit dock direction on the last child element.

Applies to

See also


Feedback

Was this page helpful?