12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <UserControl xmlns="https://github.com/avaloniaui"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
- x:Class="EntranseTesting.TestChoosingMultipleAnswers"
- x:DataType="vm:MainWindowViewModel"
- xmlns:vm="using:EntranseTesting.ViewModels">
- <ScrollViewer HorizontalScrollBarVisibility="Disabled" VerticalScrollBarVisibility="Auto">
- <StackPanel Margin="20 0" Spacing="15" Background="Transparent">
- <!-- Задание -->
- <TextBlock Text="{Binding TestMain.TestPages.TestCMA.Question}"
- VerticalAlignment="Top"
- HorizontalAlignment="Stretch"
- TextWrapping="Wrap"/>
- <!-- Картинки -->
- <ItemsRepeater ItemsSource="{Binding TestMain.TestPages.TestCMA.QImage}"
- HorizontalAlignment="Stretch"
- VerticalAlignment="Stretch">
- <ItemsRepeater.Layout>
- <WrapLayout HorizontalSpacing="15" VerticalSpacing="5" Orientation="Horizontal"/>
- </ItemsRepeater.Layout>
- <ItemsRepeater.ItemTemplate>
- <DataTemplate>
- <Image Source="{Binding qImage}" Classes="Test"/>
- </DataTemplate>
- </ItemsRepeater.ItemTemplate>
- </ItemsRepeater>
- <!-- Контейнер с элементами выбора -->
- <ItemsRepeater ItemsSource="{Binding TestMain.TestPages.TestCMA.Element}" Margin="15"
- VerticalAlignment="Center"
- HorizontalAlignment="Left">
- <ItemsRepeater.Layout>
- <StackLayout Spacing="10" Orientation="Vertical"/>
- </ItemsRepeater.Layout>
- <ItemsRepeater.ItemTemplate>
- <DataTemplate>
- <CheckBox Content="{Binding Name}"
- IsChecked="{Binding UserCorrectly}"
- TextBlock.TextWrapping="Wrap"/>
- </DataTemplate>
- </ItemsRepeater.ItemTemplate>
- </ItemsRepeater>
- </StackPanel>
- </ScrollViewer>
- </UserControl>
|