CurTestPage.xaml 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <Page x:Class="MyTests.Pages.CurTestPage"
  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:MyTests.Pages"
  7. mc:Ignorable="d"
  8. d:DesignHeight="450"
  9. d:DesignWidth="676"
  10. Background="{StaticResource color1}">
  11. <Grid Margin="20"
  12. Background="{StaticResource color2}">
  13. <Grid.RowDefinitions>
  14. <RowDefinition Height="321*"/>
  15. <RowDefinition Height="89*"/>
  16. </Grid.RowDefinitions>
  17. <TextBlock Name="QuestionBox"
  18. Text="Вопрос?"
  19. VerticalAlignment="Center"
  20. HorizontalAlignment="Center"
  21. FontSize="40"
  22. TextWrapping="Wrap">
  23. </TextBlock>
  24. <StackPanel Grid.Row="1"
  25. Orientation="Horizontal"
  26. VerticalAlignment="Center"
  27. HorizontalAlignment="Center"
  28. Height="40">
  29. <TextBox Name="AnswerBox"
  30. Width="250"
  31. Margin="0,0,10,0"/>
  32. <Button Name="NextButton"
  33. Content="Далее"
  34. Width="120"
  35. Margin="10,0,0,0"
  36. Click="NextButton_Click">
  37. </Button>
  38. </StackPanel>
  39. </Grid>
  40. </Page>