67 lines
2.3 KiB
XML
67 lines
2.3 KiB
XML
<Grid Background="LightBlue">
|
|
<Border Width="Auto"
|
|
Padding="20"
|
|
Height="Auto"
|
|
Background="White"
|
|
CornerRadius="10"
|
|
VerticalAlignment="Center"
|
|
HorizontalAlignment="Center">
|
|
<StackPanel Margin="10"
|
|
Width="320">
|
|
<TextBlock Text="🎲 Würfel"
|
|
FontSize="22"
|
|
FontWeight="Bold"
|
|
Margin="0,0,0,12"
|
|
HorizontalAlignment="Center"/>
|
|
|
|
<!-- eingabe von -->
|
|
<StackPanel Orientation="Horizontal"
|
|
Margin="0,0,0,8">
|
|
<TextBlock Text="Von:"
|
|
Width="80"
|
|
VerticalAlignment="Center"/>
|
|
<TextBox x:Name="TxtFrom"
|
|
Width="80"
|
|
Text="1"/>
|
|
</StackPanel>
|
|
|
|
<!-- eingabe bis -->
|
|
<StackPanel Orientation="Horizontal"
|
|
Margin="0,0,0,12">
|
|
<TextBlock Text="Bis:"
|
|
Width="80"
|
|
VerticalAlignment="Center"/>
|
|
<TextBox x:Name="TxtTo"
|
|
Width="80"
|
|
Text="6"/>
|
|
</StackPanel>
|
|
|
|
<!-- wie viel würfe -->
|
|
<StackPanel Orientation="Horizontal"
|
|
Margin="0,0,0,12">
|
|
<TextBlock Text="Anzahl:"
|
|
Width="80"
|
|
VerticalAlignment="Center"/>
|
|
<TextBox x:Name="TxtCount"
|
|
Width="80"
|
|
Text="1"/>
|
|
</StackPanel>
|
|
|
|
<Button Content="🎲 Würfeln"
|
|
Click="BtnRoll_Click"
|
|
Height="36"/>
|
|
|
|
<TextBlock Text="📜 Ergebnisse:"
|
|
FontWeight="SemiBold"
|
|
Margin="0,12,0,4"/>
|
|
<ListBox x:Name="LstResults"
|
|
Height="120"
|
|
Margin="0,0,0,6"/>
|
|
|
|
<TextBlock x:Name="TxtSum"
|
|
Text="Summe: 0"
|
|
FontWeight="Bold"/>
|
|
</StackPanel>
|
|
</Border>
|
|
</Grid>
|