54 lines
2.6 KiB
XML
54 lines
2.6 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>
|
|
<Grid.Background>
|
|
<ImageBrush Source="Ressourcen/WillkommenHintergrund.jpg" Stretch="UniformToFill"></ImageBrush>
|
|
</Grid.Background>
|
|
|
|
<Button Width="40" Height="40" HorizontalAlignment="Left" VerticalAlignment="Top" Margin="10"
|
|
Click="OpenSettingsWindow" >
|
|
<Button.Content>
|
|
<!--<Image Source="Ressourcen/EinstellungenIcon.png" Width="30" Height="30"/>-->
|
|
</Button.Content>
|
|
</Button>
|
|
|
|
<StackPanel HorizontalAlignment="Center" VerticalAlignment="Center" Spacing="30">
|
|
|
|
<TextBlock Text="Willkommen bei AquaCare"
|
|
FontSize="50" FontWeight="Bold"
|
|
TextDecorations="Underline"
|
|
Foreground="#80BEBEBE"
|
|
HorizontalAlignment="Center" Margin="0,0,0,20"
|
|
/>
|
|
|
|
<Button Content="Pflege" Width="200" Height="40" HorizontalAlignment="Center"
|
|
Background="#50A3B9CC" Foreground="#BEBEBE"
|
|
FontSize="20" FontWeight="Bold"
|
|
Click="buttonPflegeClick"
|
|
HorizontalContentAlignment="Center" VerticalContentAlignment="Center"
|
|
/>
|
|
|
|
<Button Content="Werte" Width="200" Height="40" HorizontalAlignment="Center"
|
|
Background="#50A3B9CC" Foreground="#BEBEBE"
|
|
FontSize="20" FontWeight="Bold"
|
|
Click="buttonWerteClick"
|
|
HorizontalContentAlignment="Center" VerticalContentAlignment="Center"
|
|
/>
|
|
|
|
<Button Content="Tutorials" Width="200" Height="40" HorizontalAlignment="Center"
|
|
Background="#50A3B9CC" Foreground="#BEBEBE"
|
|
FontSize="20" FontWeight="Bold"
|
|
Click="buttonTutorialsClick"
|
|
HorizontalContentAlignment="Center" VerticalContentAlignment="Center"
|
|
/>
|
|
|
|
</StackPanel>
|
|
</Grid>
|
|
|
|
</Window>
|