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.
15.
<
Grid
x:Name
=
"ContentPanel"
Grid.Row
=
"1"
Margin
=
"12,0,12,0"
>
16.
<
Button
Content
=
"Submit"
Height
=
"72"
HorizontalAlignment
=
"Left"
Margin
=
"148,213,0,0"
Name
=
"btnSubmit"
VerticalAlignment
=
"Top"
Width
=
"160"
/>
17.
<
TextBlock
Height
=
"30"
HorizontalAlignment
=
"Center"
Margin
=
"48,321,58,0"
Name
=
"txtResult1"
Text
=
"Result 1"
VerticalAlignment
=
"Top"
Width
=
"350"
TextAlignment
=
"Center"
/>
18.
<
TextBlock
Height
=
"30"
HorizontalAlignment
=
"Center"
Margin
=
"48,357,58,0"
Name
=
"txtResult2"
Text
=
"Result 2"
VerticalAlignment
=
"Top"
Width
=
"350"
TextAlignment
=
"Center"
/>
19.
<
RadioButton
Content
=
"Item 1"
Height
=
"72"
HorizontalAlignment
=
"Left"
Margin
=
"148,71,0,0"
Name
=
"Raido1"
VerticalAlignment
=
"Top"
/>
20.
<
RadioButton
Content
=
"Item 2"
Height
=
"72"
HorizontalAlignment
=
"Left"
Margin
=
"148,135,0,0"
Name
=
"Raido2"
VerticalAlignment
=
"Top"
/>
21.
</
Grid
>
22.
</
Grid
>