<!--LayoutRoot is the root grid where all page content is placed-->
    <Grid x:Name="LayoutRoot" Background="Transparent">
        <Grid.RowDefinitions>
            <RowDefinition Height="Auto"/>
            <RowDefinition Height="*"/>
        </Grid.RowDefinitions>
        <!--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>
        <ScrollViewer x:Name="ContentGrid" Grid.Row="1" VerticalScrollBarVisibility="Auto">
 
            <!--ContentPanel - place additional content here-->
            <Grid x:Name="ContentPanel" Margin="12,0,12,0">
                <TextBlock Height="30" HorizontalAlignment="Left" Margin="184,91,0,0" Name="TextBlock1" Text="TextBlock" VerticalAlignment="Top" />
                <Button Content="Button" Height="72" HorizontalAlignment="Left" Margin="139,234,0,0" Name="Button1" VerticalAlignment="Top" Width="160" />
                <TextBox Height="72" HorizontalAlignment="Left" Margin="31,378,0,0" Name="TextBox1" Text="TextBox" VerticalAlignment="Top" Width="358" />
                <HyperlinkButton Content="HyperlinkButton" Height="30" HorizontalAlignment="Left" Margin="119,520,0,0" Name="HyperlinkButton1" VerticalAlignment="Top" Width="200" />
            </Grid>
        </ScrollViewer>
        
    </Grid>