54 lines
2.0 KiB
XML
54 lines
2.0 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/Bilder/ProgrammIcon.ico">
|
|
|
|
<Grid>
|
|
<!-- Hintergrundbild
|
|
<Grid.Background>
|
|
<ImageBrush Source="avares://AquaCare.View/Ressourcen/Bilder/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 (Einstellungen)-->
|
|
<Button Classes="ImageButton" Click="buttonEinstellungenClick" Width="100" Height="50">
|
|
<Image Source="avares://AquaCare.View/Ressourcen/Bilder/EinstellungenImage.png"
|
|
HorizontalAlignment="Center" VerticalAlignment="Center"
|
|
Stretch="Fill"/>
|
|
</Button>
|
|
|
|
<!-- Zentrierter Inhalt -->
|
|
<StackPanel Grid.Row="1" Grid.ColumnSpan="2"
|
|
HorizontalAlignment="Center"
|
|
VerticalAlignment="Center"
|
|
Spacing="30">
|
|
|
|
<TextBlock Text="Willkommen bei AquaCare" HorizontalAlignment="Center" Classes="ÜberschriftText"/>
|
|
|
|
|
|
<Button Content="Pflege" Width="200" Height="50" HorizontalAlignment="Center"
|
|
Click="buttonPflegeClick"/>
|
|
|
|
|
|
<Button Content="Werte" Width="200" Height="50" HorizontalAlignment="Center"
|
|
Click="buttonWerteClick"/>
|
|
|
|
|
|
<Button Content="Tutorials" Width="200" Height="50" HorizontalAlignment="Center"
|
|
Click="buttonTutorialsClick"/>
|
|
|
|
</StackPanel>
|
|
</Grid>
|
|
</Window>
|