Mega Code Archive

 
Categories / VB.Net / WPF
 

Nested DockPanel

<Page    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"   xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">   <DockPanel>     <TextBlock Background="LightBlue"                DockPanel.Dock="Top">Some Text</TextBlock>     <TextBlock DockPanel.Dock="Bottom"                Background="LightYellow">bottom</TextBlock>     <TextBlock DockPanel.Dock="Left"                Background="Lavender">Some More Text</TextBlock>     <DockPanel Background="Bisque">       <StackPanel DockPanel.Dock="Top">         <Button HorizontalAlignment="Left"                  Height="30px"                 Width="100px"                 Margin="10,10,10,10">Button1</Button>         <Button HorizontalAlignment="Left"                 Height="30px"                 Width="100px"                 Margin="10,10,10,10">Button2</Button>       </StackPanel>       <TextBlock Background="LightGreen">Some Text Below the Buttons</TextBlock>     </DockPanel>   </DockPanel> </Page>