DockPanel.SetDock(UIElement, Dock) Method

Definition

Sets the value of the Dock attached property to a specified element.

public:
 static void SetDock(System::Windows::UIElement ^ element, System::Windows::Controls::Dock dock);
public static void SetDock (System.Windows.UIElement element, System.Windows.Controls.Dock dock);
static member SetDock : System.Windows.UIElement * System.Windows.Controls.Dock -> unit
Public Shared Sub SetDock (element As UIElement, dock As Dock)

Parameters

element
UIElement

The element to which the attached property is written.

dock
Dock

The needed Dock value.

Remarks

The SetDock method changes the position of a child element relative to other child elements within the same container. Alignment properties, such as HorizontalAlignment, change the position of a child element relative to its parent element.

Applies to

See also