2025-08-27 10:34:08 +02:00

72 lines
3.0 KiB
XML

<Window x:Class="PenAndPaperFinal_Final.Lobby"
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="Lobby" Height="450" Width="800">
<DockPanel Background="LightBlue" LastChildFill="True">
<StackPanel DockPanel.Dock="Top" Orientation="Horizontal" HorizontalAlignment="Center" Margin="0,10">
<TextBox Text="SitzungsTitel:"
FontSize="20"
Width="200"
FontWeight="Bold"
Foreground="Gray"
Background="White"
Margin="10"
HorizontalContentAlignment="Center" />
<TextBox Text="BenutzerName:"
FontSize="20"
Width="200"
FontWeight="Bold"
Foreground="Gray"
Background="White"
Margin="10"
HorizontalContentAlignment="Center" />
</StackPanel>
<Border Width="Auto" Padding="20" Background="White" CornerRadius="10"
VerticalAlignment="Center" HorizontalAlignment="Center" Margin="0,20">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="Auto"/>
<RowDefinition Height="Auto"/>
<RowDefinition Height="Auto"/>
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*"/>
<ColumnDefinition Width="*"/>
</Grid.ColumnDefinitions>
<Button Grid.Row="0" Grid.Column="0" Content="Karte"
FontSize="15" FontWeight="Bold" Width="120" Height="40" Margin="10" />
<Button Grid.Row="0" Grid.Column="1" Content="Kampagne"
FontSize="15" FontWeight="Bold" Width="120" Height="40" Margin="10" />
<Button Grid.Row="1" Grid.Column="0" Content="Chat"
FontSize="15" FontWeight="Bold" Width="120" Height="40" Margin="10" />
<Button Grid.Row="1" Grid.Column="1" Content="Charakter"
FontSize="15" FontWeight="Bold" Width="120" Height="40" Margin="10" />
<Button Grid.Row="2" Grid.Column="0" Content="Einstellungen"
FontSize="15" FontWeight="Bold" Width="120" Height="40" Margin="10" />
<Button Grid.Row="2" Grid.Column="1" Content="Würfeln"
FontSize="15" FontWeight="Bold" Width="120" Height="40" Margin="10" />
<Button Grid.Row="3" Grid.ColumnSpan="2" Content="🚪 Sitzung Verlassen"
FontSize="15" FontWeight="Bold" Width="250" Height="35" Margin="10"
HorizontalAlignment="Center" />
</Grid>
</Border>
</DockPanel>
</Window>