45 lines
1.6 KiB
XML
45 lines
1.6 KiB
XML
<Window x:Class="PenAndPaperFinal_Final.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:PenAndPaperFinal_Final"
|
|
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"
|
|
Height="40" Margin="10"/>
|
|
|
|
<Button Content="Registrieren"
|
|
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>
|