01.
02.
<
Grid
x:Name
=
"LayoutRoot"
Background
=
"Transparent"
>
03.
<
Grid.RowDefinitions
>
04.
<
RowDefinition
Height
=
"Auto"
/>
05.
<
RowDefinition
Height
=
"*"
/>
06.
</
Grid.RowDefinitions
>
07.
08.
09.
<
StackPanel
x:Name
=
"TitlePanel"
Grid.Row
=
"0"
Margin
=
"12,17,0,28"
>
10.
<
TextBlock
x:Name
=
"ApplicationTitle"
Text
=
"MY APPLICATION"
Style
=
"{StaticResource PhoneTextNormalStyle}"
/>
11.
<
TextBlock
x:Name
=
"PageTitle"
Text
=
"page name"
Margin
=
"9,-7,0,0"
Style
=
"{StaticResource PhoneTextTitle1Style}"
/>
12.
</
StackPanel
>
13.
14.
<
ScrollViewer
x:Name
=
"ContentGrid"
Grid.Row
=
"1"
VerticalScrollBarVisibility
=
"Auto"
>
15.
16.
17.
<
Grid
x:Name
=
"ContentPanel"
Margin
=
"12,0,12,0"
>
18.
<
TextBlock
Height
=
"30"
HorizontalAlignment
=
"Left"
Margin
=
"184,91,0,0"
Name
=
"TextBlock1"
Text
=
"TextBlock"
VerticalAlignment
=
"Top"
/>
19.
<
Button
Content
=
"Button"
Height
=
"72"
HorizontalAlignment
=
"Left"
Margin
=
"139,234,0,0"
Name
=
"Button1"
VerticalAlignment
=
"Top"
Width
=
"160"
/>
20.
<
TextBox
Height
=
"72"
HorizontalAlignment
=
"Left"
Margin
=
"31,378,0,0"
Name
=
"TextBox1"
Text
=
"TextBox"
VerticalAlignment
=
"Top"
Width
=
"358"
/>
21.
<
HyperlinkButton
Content
=
"HyperlinkButton"
Height
=
"30"
HorizontalAlignment
=
"Left"
Margin
=
"119,520,0,0"
Name
=
"HyperlinkButton1"
VerticalAlignment
=
"Top"
Width
=
"200"
/>
22.
</
Grid
>
23.
24.
</
ScrollViewer
>
25.
26.
</
Grid
>