38 lines
1.7 KiB
XML
38 lines
1.7 KiB
XML
<Window xmlns="https://github.com/avaloniaui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
x:Class="AquaCare.View.PflegeWindow"
|
|
Title="Pflege Werte eintragen"
|
|
Width="400" Height="350">
|
|
<Grid>
|
|
|
|
<Grid RowDefinitions="Auto,Auto,Auto,Auto,Auto,Auto"
|
|
ColumnDefinitions="Auto,*"
|
|
Margin="20">
|
|
<!-- Datum -->
|
|
<DatePicker x:Name="DatumPicker" Width="100" Grid.Row="0" Grid.Column="0" />
|
|
<TextBlock Text="Datum:" Grid.Row="0" Grid.Column="1" VerticalAlignment="Center"/>
|
|
<TextBox Text="XXX:" Grid.Row="0" Grid.Column="0" />
|
|
|
|
|
|
<!-- Temperatur -->
|
|
<TextBlock Text="Temperatur (°C):" Grid.Row="1" Grid.Column="1" VerticalAlignment="Center"/>
|
|
<TextBox x:Name="TemperaturBox" Height="50" Grid.Row="1" Grid.Column="0" Width="100"/>
|
|
|
|
<!-- pH-Wert -->
|
|
<TextBlock Text="pH-Wert:" Grid.Row="2" Grid.Column="1" VerticalAlignment="Center"/>
|
|
<TextBox x:Name="PhBox" Grid.Row="2" Grid.Column="0" Width="100"/>
|
|
|
|
<!-- Nitrat -->
|
|
<TextBlock Text="Nitrat (mg/l):" Grid.Row="3" Grid.Column="1" VerticalAlignment="Center"/>
|
|
<TextBox x:Name="NitratBox" Grid.Row="3" Grid.Column="0" Width="100"/>
|
|
|
|
<!-- Ammoniak -->
|
|
<TextBlock Text="Ammoniak (mg/l):" Grid.Row="4" Grid.Column="1" VerticalAlignment="Center"/>
|
|
<TextBox x:Name="AmmoniakBox" Grid.Row="4" Grid.Column="0" Width="100"/>
|
|
|
|
<!-- Speichern-Button -->
|
|
<Button Content="Speichern" Grid.Row="5" Grid.Column="0" Margin="0,20,0,0" HorizontalAlignment="Right" Click="SaveClick"/>
|
|
|
|
</Grid>
|
|
</Grid>
|
|
</Window> |