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.
<
Grid
x:Name
=
"ContentPanel"
Grid.Row
=
"1"
Margin
=
"12,0,12,0"
>
15.
<
MediaElement
Height
=
"172"
HorizontalAlignment
=
"Left"
Margin
=
"97,97,0,0"
Name
=
"MediaElement1"
VerticalAlignment
=
"Top"
Width
=
"250"
/>
16.
<
ProgressBar
Height
=
"42"
HorizontalAlignment
=
"Left"
Margin
=
"8,313,0,0"
Name
=
"ProgressBar1"
VerticalAlignment
=
"Top"
Width
=
"442"
/>
17.
</
Grid
>
18.
19.
</
Grid
>