<DockPanel>
<Label Content="Dock Panel Layout Demo"
FontSize="15" FontWeight="Bold" Background="LightBlue"
Foreground="Blue" DockPanel.Dock="Top"/>
<Label Content="Footer" FontSize="15" FontWeight="Bold"
Background="LightGray"
DockPanel.Dock="Bottom" />
<Label Content="Left Pane" FontSize="15" FontWeight="Bold"
Width="125" Background="Firebrick"
DockPanel.Dock="Left"/>
<Label Content="Content Pane" FontSize="15" FontWeight="Bold"
Width="255"
Background="Beige"/>
<Label Content="Right Pane" FontSize="15" FontWeight="Bold"
Width="125" Background="Khaki"
DockPanel.Dock="Right"/>
</DockPanel>