76 lines
2.7 KiB
XML
76 lines
2.7 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">
|
|
|
|
<UserControl.Styles>
|
|
<Style Selector="Button">
|
|
<Setter Property="Background" Value="Black"/>
|
|
<Setter Property="Foreground" Value="White"/>
|
|
</Style>
|
|
<Style Selector="Button:pointerover /template/ ContentPresenter">
|
|
<Setter Property="Background" Value="DarkRed"/>
|
|
</Style>
|
|
<Style Selector="Button:pressed /template/ ContentPresenter">
|
|
<Setter Property="Background" Value="Red"/>
|
|
</Style>
|
|
</UserControl.Styles>
|
|
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="*"/>
|
|
<RowDefinition Height="Auto"/>
|
|
</Grid.RowDefinitions>
|
|
|
|
<!-- Content -->
|
|
<StackPanel Grid.Row="0"
|
|
VerticalAlignment="Center"
|
|
HorizontalAlignment="Center">
|
|
<TextBlock Text="Author: Oliver Träger"
|
|
FontSize="20"
|
|
HorizontalAlignment="Center"
|
|
Margin="0,0,0,10"/>
|
|
<TextBlock Text="Klasse: ITFS2"
|
|
FontSize="20"
|
|
HorizontalAlignment="Center"
|
|
Margin="0,0,0,10"/>
|
|
<TextBlock Text="SS2025"
|
|
FontSize="20"
|
|
Foreground="White"
|
|
HorizontalAlignment="Center"
|
|
Margin="0,0,0,40"/>
|
|
</StackPanel>
|
|
|
|
<!-- Footer with Buttons -->
|
|
<Grid Grid.Row="1"
|
|
Margin="20,0,20,20">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="Auto"/>
|
|
<ColumnDefinition Width="*"/>
|
|
<ColumnDefinition Width="Auto"/>
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<Button Name="ThemeButton"
|
|
Grid.Column="0"
|
|
Click="ThemeButton_Click"
|
|
Width="250"
|
|
Height="40">
|
|
<TextBlock Text="Theme wechseln"
|
|
FontSize="16"
|
|
HorizontalAlignment="Center"/>
|
|
</Button>
|
|
|
|
<Button x:Name="BackButton"
|
|
Grid.Column="2"
|
|
Click="BackButton_Click"
|
|
Width="200"
|
|
Height="40">
|
|
<TextBlock Text="Back"
|
|
FontSize="16"
|
|
HorizontalAlignment="Center"/>
|
|
</Button>
|
|
</Grid>
|
|
</Grid>
|
|
</UserControl> |