CheckTestResultsCatalog.xaml 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <Page x:Class="MyTests.Pages.CheckTestResultsCatalog"
  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" d:DesignWidth="800"
  9. Title="CheckTestResultsCatalog">
  10. <Grid Background="{StaticResource color1}">
  11. <Grid.RowDefinitions>
  12. <RowDefinition/>
  13. <RowDefinition Height="50"/>
  14. </Grid.RowDefinitions>
  15. <ListBox Name="AnswersListBox"
  16. Background="{StaticResource color1}"
  17. BorderBrush="{x:Null}">
  18. <ScrollViewer VerticalScrollBarVisibility="Visible"/>
  19. <ListBox.ItemTemplate>
  20. <DataTemplate>
  21. <Border Width="{Binding Path=ActualWidth, ElementName=TestsListBox}"
  22. Margin="-7,0,0,0"
  23. Height="45"
  24. CornerRadius="10"
  25. Background="{StaticResource color2}">
  26. <StackPanel Orientation="Horizontal">
  27. <Image Width="30"
  28. Height="30"
  29. Margin="10,5,5,5"
  30. HorizontalAlignment="Left"
  31. Source="/MyTests;component/Resources/approval.png">
  32. </Image>
  33. <StackPanel>
  34. <StackPanel Orientation="Horizontal">
  35. <Label Content="{Binding surname}"/>
  36. <Label Content="{Binding name}"/>
  37. <Label Content="{Binding patronymic}"/>
  38. </StackPanel>
  39. <TextBlock Margin="0,-7,0,0">
  40. <Run Text="Вопросов: "
  41. Foreground="White"/>
  42. <Run Text="{Binding correct}"
  43. Foreground="White"/>
  44. <Run Text="/"
  45. Foreground="White"/>
  46. <Run Text="{Binding count}"
  47. Foreground="White"/>
  48. </TextBlock>
  49. </StackPanel>
  50. </StackPanel>
  51. </Border>
  52. </DataTemplate>
  53. </ListBox.ItemTemplate>
  54. </ListBox>
  55. </Grid>
  56. </Page>