31 lines
1.2 KiB
XML
31 lines
1.2 KiB
XML
<Window x:Class="Lotto_Test.MainWindow"
|
||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||
Title="Lotto" Height="500" Width="600">
|
||
<Grid Margin="10">
|
||
<Grid.RowDefinitions>
|
||
<RowDefinition Height="Auto"/>
|
||
<!-- Überschrift -->
|
||
<RowDefinition Height="*"/>
|
||
<!-- Spielfeld -->
|
||
</Grid.RowDefinitions>
|
||
|
||
<Grid.ColumnDefinitions>
|
||
<ColumnDefinition Width="3*"/>
|
||
<ColumnDefinition Width="1*"/>
|
||
</Grid.ColumnDefinitions>
|
||
|
||
<TextBlock Text="Lotto – Wähle 6 Zahlen"
|
||
FontSize="18" FontWeight="Bold"
|
||
HorizontalAlignment="Center"
|
||
Grid.ColumnSpan="2" Grid.Row="0" Margin="0,0,0,10"/>
|
||
|
||
<WrapPanel x:Name="Feld" Grid.Column="0" Grid.Row="1"/>
|
||
|
||
<StackPanel Grid.Column="1" Grid.Row="1" Margin="10,0,0,0">
|
||
<TextBlock x:Name="GeldText" FontSize="14" Margin="0,0,0,20"/>
|
||
<Button Content="Ziehung" Click="Ziehung_Click" Margin="0,0,0,10"/>
|
||
<Button Content="Reset" Click="Reset_Click"/>
|
||
</StackPanel>
|
||
</Grid>
|
||
</Window> |