Projekt_SS25/Project_Periodensystem.View/LandingPage.axaml

19 lines
662 B
XML

<UserControl xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
x:Class="Project_Periodensystem.View.LandingPage">
<Grid>
<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>