Files
CompassVO/CompassVO/PrivacyPolicy.xaml
T

26 lines
1.2 KiB
XML

<phone:PhoneApplicationPage
x:Class="CompassVO.PrivacyPolicy"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:phone="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone"
xmlns:shell="clr-namespace:Microsoft.Phone.Shell;assembly=Microsoft.Phone"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:controls="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone.Controls"
FontFamily="{StaticResource PhoneFontFamilyNormal}"
FontSize="{StaticResource PhoneFontSizeNormal}"
Foreground="{StaticResource PhoneForegroundBrush}"
SupportedOrientations="Portrait" Orientation="Portrait"
mc:Ignorable="d"
shell:SystemTray.IsVisible="True">
<!--LayoutRoot is the root grid where all page content is placed-->
<Grid x:Name="LayoutRoot"
Background="Transparent" Margin="12">
<TextBlock Text="Compass VO - Privacy Policy" FontSize="26"></TextBlock>
<phone:WebBrowser Name="webPolicy" Margin="0, 50,0,0" VerticalAlignment="Stretch" Loaded="webPolicy_Loaded"></phone:WebBrowser>
</Grid>
</phone:PhoneApplicationPage>