Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <Grid x:Name="GameDialog" Background="{StaticResource DarkBlack}" Visibility="Hidden">
  2. <Grid.ColumnDefinitions>
  3. <ColumnDefinition Width="1*" />
  4. <ColumnDefinition Width="20*" />
  5. <ColumnDefinition Width="1*" />
  6. </Grid.ColumnDefinitions>
  7. <Grid.RowDefinitions>
  8. <RowDefinition Height="*" />
  9. <RowDefinition Height="Auto" />
  10. <RowDefinition Height="*" />
  11. </Grid.RowDefinitions>
  12. <Border x:Name="GameDialogContent" Background="White" Padding="15" Grid.Column="1" Grid.Row="1">
  13. <Grid>
  14. <Grid.RowDefinitions>
  15. <RowDefinition />
  16. <RowDefinition />
  17. <RowDefinition />
  18. <RowDefinition />
  19. </Grid.RowDefinitions>
  20. <TextBlock x:Name="GameDialogTitleText" Text="Title" FontSize="36" FontWeight="ExtraBold" TextWrapping="Wrap" HorizontalAlignment="Center" Foreground="White" />
  21. <Grid x:Name="GameDialogContentImage" Grid.Row="1" Grid.RowSpan="2" />
  22. <TextBlock x:Name="GameDialogContentText" Text="Content Text" Grid.Row="1" FontSize="24" FontWeight="DemiBold" HorizontalAlignment="Center" Foreground="White" TextWrapping="Wrap" />
  23. <Button x:Name="GameDialogAcceptButton" Grid.Row="3" FontSize="24" FontWeight="Medium" Content="Accept" Background="{StaticResource Blue500}" Foreground="White" Margin="5" />
  24. </Grid>
  25. </Border>
  26. </Grid>