<UserControl x:Class="_018_DockPanelMultiplosElementos.MainPage"
xmlns:ctk="clr-namespace:System.Windows.Controls;assembly=System.Windows.Controls.Toolkit"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d" d:DesignWidth="640" d:DesignHeight="480">
<ctk:DockPanel LastChildFill="True">
<Button ctk:DockPanel.Dock="Top" Content="Top"></Button>
<Button ctk:DockPanel.Dock="Top" HorizontalAlignment="Center"
Content="Center Top"></Button>
<Button ctk:DockPanel.Dock="Top" HorizontalAlignment="Left"
Content="Left Top"></Button>
<Button ctk:DockPanel.Dock="Bottom" Content="Bottom"></Button>
<Button ctk:DockPanel.Dock="Left" Content="Left"></Button>
<Button ctk:DockPanel.Dock="Right" Content="Right"></Button>
<Button Content="Resto do espaço"></Button>
</ctk:DockPanel>
</UserControl>