Advertisement
Guest User

Untitled

a guest
Feb 20th, 2019
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.68 KB | None | 0 0
  1. <Grid x:Name="LayoutRoot" Background="Transparent">
  2. <Grid.RowDefinitions>
  3. <RowDefinition Height="Auto"/>
  4. <RowDefinition Height="Auto"/>
  5. </Grid.RowDefinitions>
  6.  
  7. <!--TitlePanel contains the name of the application and page title-->
  8. <StackPanel x:Name="TitlePanel" Grid.Row="0" Margin="12,17,0,12">
  9. <TextBlock x:Name="ApplicationTitle" Text="MY APPLICATION" Style="{StaticResource PhoneTextNormalStyle}"/>
  10. <TextBlock x:Name="PageTitle" Text="{Binding Title}" Margin="9,-7,0,0" Style="{StaticResource PhoneTextExtraLargeStyle}"/>
  11. </StackPanel>
  12.  
  13. <!--ContentPanel - place additional content here-->
  14. <StackPanel Grid.Row="1" Margin="12,17,0,12">
  15. <phone:WebBrowser Name="HtmlBody" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Background="Red" Margin="12,17,0,28"/>
  16. </StackPanel>
  17. </Grid>
  18.  
  19. <Grid x:Name="LayoutRoot" Background="Transparent">
  20. <Grid.RowDefinitions>
  21. <RowDefinition Height="Auto"/>
  22. <RowDefinition Height="*"/>
  23. </Grid.RowDefinitions>
  24.  
  25. <!--TitlePanel contains the name of the application and page title-->
  26. <StackPanel x:Name="TitlePanel" Grid.Row="0" Margin="12,17,0,12">
  27. <TextBlock x:Name="ApplicationTitle" Text="MY APPLICATION" Style="{StaticResource PhoneTextNormalStyle}"/>
  28. <TextBlock x:Name="PageTitle" Text="{Binding Title}" Margin="9,-7,0,0" Style="{StaticResource PhoneTextExtraLargeStyle}"/>
  29. </StackPanel>
  30.  
  31. <!--ContentPanel - place additional content here-->
  32. <Grid Grid.Row="1" Margin="12,17,0,12">
  33. <phone:WebBrowser Name="HtmlBody" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Background="Red" Margin="12,17,0,28"/>
  34. </Grid>
  35. </Grid>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement