01.
<
Grid
x:Name
=
"LayoutRoot"
Background
=
"Transparent"
>
02.
<
Grid.RowDefinitions
>
03.
<
RowDefinition
Height
=
"Auto"
/>
04.
<
RowDefinition
Height
=
"*"
/>
05.
</
Grid.RowDefinitions
>
06.
07.
08.
<
StackPanel
x:Name
=
"TitlePanel"
Grid.Row
=
"0"
Margin
=
"12,17,0,28"
>
09.
<
TextBlock
x:Name
=
"ApplicationTitle"
Text
=
"MY APPLICATION"
Style
=
"{StaticResource PhoneTextNormalStyle}"
/>
10.
<
TextBlock
x:Name
=
"PageTitle"
Text
=
"page name"
Margin
=
"9,-7,0,0"
Style
=
"{StaticResource PhoneTextTitle1Style}"
/>
11.
</
StackPanel
>
12.
13.
14.
<
Grid
x:Name
=
"ContentPanel"
Grid.Row
=
"1"
Margin
=
"12,0,12,0"
>
15.
<
TextBlock
Height
=
"30"
HorizontalAlignment
=
"Left"
Margin
=
"148,75,0,0"
Name
=
"lblTitle"
Text
=
"Input your name?"
VerticalAlignment
=
"Top"
/>
16.
<
TextBox
Height
=
"72"
HorizontalAlignment
=
"Left"
Margin
=
"50,111,0,0"
Name
=
"txtName"
Text
=
""
VerticalAlignment
=
"Top"
Width
=
"360"
/>
17.
<
Button
Content
=
"Submit"
Height
=
"72"
HorizontalAlignment
=
"Left"
Margin
=
"148,213,0,0"
Name
=
"btnSubmit"
VerticalAlignment
=
"Top"
Width
=
"160"
/>
18.
</
Grid
>
19.
</
Grid
>