43 lines
1.8 KiB
XML

<Window x:Class="Pen_Paper_Main.MainWindow"
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:Pen_Paper_Main"
mc:Ignorable="d"
Title="MainWindow" Height="450" Width="800">
<Grid Background="LightBlue">
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="*"/>
<RowDefinition Height="Auto"/>
</Grid.RowDefinitions>
<TextBlock Text="Pen and Paper Manager"
FontSize="28"
FontWeight="Bold"
Foreground="#333"
Margin="0,30,0,10"
HorizontalAlignment="Center" />
<StackPanel Grid.Row="1" VerticalAlignment="Center" HorizontalAlignment="Center" Width="300" >
<TextBlock Text="Willkommen bei Pen and Paper!" FontSize="20" FontWeight="SemiBold" TextAlignment="Center"/>
<Button Content="Anmelden" Click="Anmelden_Click"
Height="40" Margin="10"/>
<Button Content="Registrieren" Click="Registrieren_Click"
Height="40" Margin="10"/>
<Button Content="Als Gast fortfahren"
Height="35" Margin="10"
Foreground="Gray"/>
</StackPanel>
<TextBlock Grid.Row="2" Text="v1.0.0"
FontSize="15"
Foreground="Gray"
HorizontalAlignment="Center"
Margin="0,10,0,10"/>
</Grid>
</Window>