AquaCare/AquaCare.View/WerteWindow.axaml
2025-05-13 23:31:28 +02:00

38 lines
1.4 KiB
XML

<Window xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
x:Class="AquaCare.View.WerteWindow"
Title="Werte - Übersicht"
Width="800" Height="600"
Icon="Ressourcen/Bilder/ProgrammIcon.ico">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/> <!-- Überschrift -->
<RowDefinition Height="*"/> <!-- Hauptinhalt -->
</Grid.RowDefinitions>
<!-- Überschrift -->
<TextBlock Grid.Row="0"
Text="Werte - Übersicht"
FontSize="24"
HorizontalAlignment="Center"
Margin="0,10,0,10"/>
<!-- Hauptinhalt -->
<StackPanel Grid.Row="1" Margin="20" Spacing="10">
<ListBox x:Name="ValuesList" Grid.Row="1" Margin="20" />
<!-- Beispielwerte -->
<TextBlock Text="Temperatur: 25°C" FontSize="18"/>
<TextBlock Text="pH-Wert: 7.5" FontSize="18"/>
<TextBlock Text="Nitrat: 10 mg/L" FontSize="18"/>
<TextBlock Text="Ammoniak: 0 mg/L" FontSize="18"/>
<Grid>
<DataGrid x:Name="WerteDataGrid" AutoGenerateColumns="True" />
</Grid>
<!-- Schließen-Button -->
<Button Content="Schließen" HorizontalAlignment="Center" Width="100" Click="CloseWindowClick"/>
</StackPanel>
</Grid>
</Window>