30 lines
976 B
XML
30 lines
976 B
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.ResultView"
|
|
x:DataType="vm:ResultViewModel">
|
|
|
|
<Grid>
|
|
<StackPanel HorizontalAlignment="Center" VerticalAlignment="Center" Spacing="12" Margin="20">
|
|
|
|
<StackPanel HorizontalAlignment="Center" >
|
|
<TextBlock FontSize="36"
|
|
Text="{Binding Text}" />
|
|
</StackPanel>
|
|
|
|
<StackPanel HorizontalAlignment="Center" IsVisible="{Binding ShowTimeRequired}" >
|
|
<TextBlock FontSize="24"
|
|
Text="{Binding TimeRequiredText}" />
|
|
</StackPanel>
|
|
|
|
<StackPanel HorizontalAlignment="Center" >
|
|
<Button FontSize="36" Content="Neu starten" IsDefault="True"
|
|
Command="{Binding RestartCommand}" />
|
|
</StackPanel>
|
|
|
|
</StackPanel>
|
|
</Grid>
|
|
|
|
</UserControl>
|