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

46 lines
1.8 KiB
XML

<!-- Datei: Project_Periodensystem.View/AboutPage.axaml -->
<UserControl xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:i="using:Avalonia.Interactivity"
x:Class="Project_Periodensystem.View.AboutPage"
Background="#5C5144">
<Grid>
<StackPanel VerticalAlignment="Center"
HorizontalAlignment="Center">
<TextBlock Text="Author: Oliver Träger"
FontSize="20"
Foreground="White"
HorizontalAlignment="Center"
Margin="0,0,0,10"/>
<TextBlock Text="Klasse: ITFS2"
FontSize="20"
Foreground="White"
HorizontalAlignment="Center"
Margin="0,0,0,10"/>
<TextBlock Text="SS2025"
FontSize="20"
Foreground="White"
HorizontalAlignment="Center"
Margin="0,0,0,40"/>
</StackPanel>
<Button x:Name="BackButton"
Click="BackButton_Click"
HorizontalAlignment="Left"
VerticalAlignment="Top"
Margin="20"
Padding="20,10"
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>
Back
</Button>
</Grid>
</UserControl>