In this step you'll add and style several C1DockPanels.
Complete the following steps:
Markup Copy Code <Xaml:C1DockPanel Background="White" Width="400" Height="250"> <Border Xaml:C1DockPanel.Dock="Top" Height="50" Background="Red"> <TextBlock Text="Top" /> </Border> <Border Xaml:C1DockPanel.Dock="Bottom" Height="50" Background="Blue"> <TextBlock Text="Bottom" /> </Border> <Border Xaml:C1DockPanel.Dock="Right" Width="50" Background="Yellow"> <TextBlock Text="Right" /> </Border> <Border Xaml:C1DockPanel.Dock="Left" Width="50" Background="Green"> <TextBlock Text="Left" /> </Border> </Xaml:C1DockPanel>
In the next step, you'll run the application.