43 lines
1.6 KiB
XML
43 lines
1.6 KiB
XML
<Window xmlns="https://github.com/avaloniaui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
x:Class="AquaCare.View.TutorialsWindow"
|
|
Title="Tutorials"
|
|
Width="1280" Height="720"
|
|
Icon="Ressourcen/Bilder/ProgrammIcon.ico">
|
|
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="Auto"/>
|
|
<RowDefinition Height="*"/>
|
|
</Grid.RowDefinitions>
|
|
|
|
<!-- Überschrift -->
|
|
<TextBlock Text="Was kannst du nicht ?"
|
|
FontSize="24"
|
|
HorizontalAlignment="Center"
|
|
Margin="0,20,0,10"
|
|
Grid.Row="0" />
|
|
|
|
<!-- Inhalte mittig -->
|
|
<StackPanel Grid.Row="1"
|
|
HorizontalAlignment="Center"
|
|
VerticalAlignment="Center"
|
|
Spacing="20">
|
|
|
|
<!-- Buttons für Tutorials -->
|
|
<Button Content="Fische füttern" Width="200" Height="50" Click="FischeFütternClick"/>
|
|
<Button Content="Wasser wechseln" Width="200" Height="50" Click="WasserWechselnClick"/>
|
|
<Button Content="Filter reinigen" Width="200" Height="50" Click="FilterReinigenClick"/>
|
|
|
|
<!-- Textblock für Tutorial-Inhalt -->
|
|
<TextBlock Name="tutorialContentTextBlock"
|
|
Text="Hier erscheint der Tutorial-Inhalt"
|
|
TextWrapping="Wrap"
|
|
MaxWidth="500"
|
|
Margin="0,20,0,0"
|
|
HorizontalAlignment="Center"/>
|
|
|
|
</StackPanel>
|
|
</Grid>
|
|
</Window>
|