Projekt_SS25/Project_Periodensystem.View/LandingPage.axaml
2025-06-04 08:56:55 +02:00

25 lines
927 B
XML

<UserControl xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
x:Class="Project_Periodensystem.View.LandingPage"
Background="#5C5144">
<Grid>
<TextBlock Text="Willkommen zum Periodensystem der Elemente!"
FontSize="36"
HorizontalAlignment="Center"
VerticalAlignment="Top"
Margin="0,40,0,0"/>
<Button Name="StartButton"
Click="StartButton_Click"
HorizontalAlignment="Center"
VerticalAlignment="Center"
Width="200"
Height="50"
Background="DarkRed"
Foreground="White">
<TextBlock Text="Start"
FontSize="24"
HorizontalAlignment="Center"/>
</Button>
</Grid>
</UserControl>