29 lines
1.0 KiB
XML
29 lines
1.0 KiB
XML
<UserControl
|
|
xmlns="https://github.com/avaloniaui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:vm="using:EinmaleinsTrainer.ViewModels"
|
|
x:Class="EinmaleinsTrainer.Views.QuizView"
|
|
x:DataType="vm:QuizViewModel">
|
|
|
|
<Grid>
|
|
<StackPanel HorizontalAlignment="Center" VerticalAlignment="Center" Spacing="12" Margin="20">
|
|
|
|
<TextBlock FontSize="18"
|
|
Text="{Binding QuestionNumber, StringFormat='Frage {0}'}" />
|
|
|
|
<TextBlock FontSize="36"
|
|
Text="{Binding CurrentQuestionText}" />
|
|
|
|
<TextBox x:Name="AnswerTextBox" FontSize="24" Text="{Binding UserAnswer, Mode=TwoWay}" />
|
|
|
|
<Button FontSize="24" Content="OK" IsDefault="True"
|
|
Command="{Binding SubmitCommand}" />
|
|
|
|
<TextBlock FontSize="12" Text="{Binding Score, StringFormat='Punkte: {0}'}" />
|
|
|
|
<TextBlock FontSize="18" Text="{Binding RemainingSeconds, StringFormat='Zeit: {0} s'}"
|
|
IsVisible="{Binding UseTimer}" />
|
|
|
|
</StackPanel>
|
|
</Grid>
|
|
</UserControl> |