55 lines
1.8 KiB
XML
55 lines
1.8 KiB
XML
<Window xmlns="https://github.com/avaloniaui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
x:Class="AquaCare.View.MainWindow"
|
|
Title="AquaCare - Nasse Ärmel in Vertretung"
|
|
Width="1280" Height="720"
|
|
Icon="Ressourcen/ProgrammIcon.ico">
|
|
|
|
<Grid>
|
|
<!-- Hintergrundbild-->
|
|
<Grid.Background>
|
|
<ImageBrush Source="avares://AquaCare.View/Ressourcen/WillkommenHintergrund.jpg" Stretch="UniformToFill"/>
|
|
</Grid.Background>
|
|
|
|
<!-- Grid-Aufteilung -->
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="Auto"/>
|
|
<RowDefinition Height="*"/>
|
|
</Grid.RowDefinitions>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="Auto"/>
|
|
<ColumnDefinition Width="*"/>
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<!-- Button oben links -->
|
|
<Button Content="Einstellungen"
|
|
Width="150" Height="40"
|
|
HorizontalAlignment="Left"
|
|
Margin="20"
|
|
Click="buttonEinstellungenClick" />
|
|
|
|
|
|
<!-- Zentrierter Inhalt -->
|
|
<StackPanel Grid.Row="1" Grid.ColumnSpan="2"
|
|
HorizontalAlignment="Center"
|
|
VerticalAlignment="Center"
|
|
Spacing="30">
|
|
|
|
<TextBlock Text="Willkommen bei AquaCare"
|
|
HorizontalAlignment="Center"/>
|
|
|
|
<Button Content="Pflege" Width="200" Height="40" HorizontalAlignment="Center"
|
|
Click="buttonPflegeClick"/>
|
|
|
|
|
|
<Button Content="Werte" Width="200" Height="40" HorizontalAlignment="Center"
|
|
Click="buttonWerteClick"/>
|
|
|
|
|
|
<Button Content="Tutorials" Width="200" Height="40" HorizontalAlignment="Center"
|
|
Click="buttonTutorialsClick"/>
|
|
|
|
</StackPanel>
|
|
</Grid>
|
|
</Window>
|