<!--TitlePanel contains the name of the application and page title-->
<StackPanel x:Name="TitlePanel" Grid.Row="0" Margin="12,17,0,28">
<TextBlock x:Name="ApplicationTitle" Text="MY APPLICATION" Style="{StaticResource PhoneTextNormalStyle}"/>
<TextBlock x:Name="PageTitle" Text="page name" Margin="9,-7,0,0" Style="{StaticResource PhoneTextTitle1Style}"/>
</StackPanel>
<!--ContentPanel - place additional content here-->
<Grid x:Name="ContentPanel" Grid.Row="1" Margin="12,0,12,0">
<Border BorderBrush="Silver" BorderThickness="1" Height="100" HorizontalAlignment="Left" Margin="138,59,0,0" Name="Border1" VerticalAlignment="Top" Width="200" />
<Border Background="Coral" Padding="10" CornerRadius="20" Margin="84,184,74,342">
<TextBlock FontSize="16" Height="92" Width="228" TextAlignment="Center">Text Surrounded by a Border</TextBlock>
</Border>
<Border BorderThickness="5" BorderBrush="Blue" Margin="176,296,167,180">
<StackPanel Height="120" Width="100">
<TextBlock Text="One"/>
<TextBlock Text="Two"/>
<TextBlock Text="Three"/>
</StackPanel>
</Border>
</Grid>
</Grid>