19 lines
874 B
XML
19 lines
874 B
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="500" Height="500">
|
|
|
|
<StackPanel HorizontalAlignment="Center" VerticalAlignment="Center" Spacing="20">
|
|
<TextBlock Text="Willkommen bei AquaCare"
|
|
FontSize="24" FontWeight="Bold"
|
|
HorizontalAlignment="Center" Margin="0,0,0,20" />
|
|
|
|
<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>
|
|
|
|
</Window>
|
|
|