ResultPage.xaml 1.2 KB

12345678910111213141516171819202122
  1. <Page x:Class="PsychoTest.Pages.ResultPage"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  5. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6. xmlns:local="clr-namespace:PsychoTest.Pages"
  7. mc:Ignorable="d"
  8. d:DesignHeight="1024" d:DesignWidth="1440"
  9. Title="ResultPage">
  10. <Grid Background="#00A08A">
  11. <StackPanel HorizontalAlignment="Center" VerticalAlignment="Center" Width="1200">
  12. <TextBlock HorizontalAlignment="Center" FontSize="40" Text="Ваш результат:"/>
  13. <TextBlock FontWeight="Bold" Margin="0,10,0,0" TextWrapping="Wrap" HorizontalAlignment="Center" FontSize="30" Name="ResultName"/>
  14. <TextBlock Margin="0,10,0,0" TextWrapping="Wrap" HorizontalAlignment="Center" FontSize="25" Name="ResultText"/>
  15. </StackPanel>
  16. <Button Click="GoTests" Margin="0,0,0,20" Background="#FFA400" HorizontalAlignment="Center" Template="{DynamicResource ButtonTemplate1}" VerticalAlignment="Bottom" FontSize="30" Content="Вернуться к тестам" Height="70" Width="300"/>
  17. </Grid>
  18. </Page>