59 lines
2.3 KiB
XML
59 lines
2.3 KiB
XML
<Window x:Class="PenAndPaperFinal_Final.Würfel"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
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"
|
|
xmlns:local="clr-namespace:PenAndPaperFinal_Final"
|
|
mc:Ignorable="d"
|
|
Title="Würfel" Height="450" Width="800">
|
|
<Grid Background="LightBlue">
|
|
|
|
<Border Width="Auto" Padding="20" Height="Auto" Background="White" CornerRadius="10"
|
|
VerticalAlignment="Center" HorizontalAlignment="Center" >
|
|
<StackPanel HorizontalAlignment="Center" Margin="20">
|
|
|
|
|
|
|
|
<TextBlock Text="🎲 Würfel"
|
|
FontSize="22"
|
|
FontWeight="Bold"
|
|
Margin="0,0,0,20"
|
|
HorizontalAlignment="Center" />
|
|
|
|
<StackPanel Orientation="Horizontal" Margin="0,0,0,10">
|
|
<TextBlock Text="Würfeltyp:" Width="80" VerticalAlignment="Center"/>
|
|
<ComboBox Width="120">
|
|
<ComboBoxItem>D4</ComboBoxItem>
|
|
<ComboBoxItem>D6</ComboBoxItem>
|
|
<ComboBoxItem>D8</ComboBoxItem>
|
|
<ComboBoxItem>D10</ComboBoxItem>
|
|
<ComboBoxItem>D12</ComboBoxItem>
|
|
<ComboBoxItem>D20</ComboBoxItem>
|
|
<ComboBoxItem>D100</ComboBoxItem>
|
|
</ComboBox>
|
|
</StackPanel>
|
|
|
|
<StackPanel Orientation="Horizontal" Margin="0,0,0,20">
|
|
<TextBlock Text="Anzahl:" Width="80" VerticalAlignment="Center"/>
|
|
<TextBox Width="120" Text="PlatzHalter" Foreground="LightGray" />
|
|
</StackPanel>
|
|
|
|
<Button Content="🎲 Würfeln"
|
|
Width="150"
|
|
Margin="0,0,0,20"
|
|
HorizontalAlignment="Center" />
|
|
|
|
<TextBlock Text="📜 Ergebnisse:"
|
|
FontWeight="SemiBold"
|
|
Margin="0,0,0,5"/>
|
|
|
|
|
|
<ListBox
|
|
Height="100"
|
|
Margin="0,0,0,10"/>
|
|
|
|
</StackPanel>
|
|
</Border>
|
|
</Grid>
|
|
</Window>
|