Projekt_SS25/Project_Periodensystem.View/LandingPage.axaml

33 lines
1.3 KiB
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="Black"
Foreground="White">
<Button.Styles>
<Style Selector="Button:pointerover /template/ ContentPresenter">
<Setter Property="Background" Value="DarkRed"/>
</Style>
<Style Selector="Button:pressed /template/ ContentPresenter">
<Setter Property="Background" Value="Red"/>
</Style>
</Button.Styles>
<TextBlock Text="Start"
FontSize="24"
HorizontalAlignment="Center"/>
</Button>
</Grid>
</UserControl>