Aktuelle Schäden können bearbeitet werden

This commit is contained in:
Husky
2020-03-29 17:18:58 +02:00
parent 0bf99f353d
commit 5bc8c58fa6
6 changed files with 43 additions and 4 deletions

View File

@@ -32,9 +32,12 @@
<Label Grid.Row="0" Content="Entfernung" />
<TextBox Grid.Row="0" Grid.Column="1" Text="{Binding Entfernung}" />
<StackPanel Grid.Row="1" Grid.RowSpan="2" Grid.ColumnSpan="2">
<CheckBox Content="Riss / Bruch / Scherbe" Style="{StaticResource checkBoxCircle}" IsChecked="{Binding RissBruchScherbe}" />
<CheckBox Content="Wurzel / Inkrustation / Ablagerungen" Style="{StaticResource checkBoxCircle}" IsChecked="{Binding WurzelInkrustationAblagerungen}" />
<CheckBox Content="Einragende Stutzen" Style="{StaticResource checkBoxCircle}" IsChecked="{Binding EinragendeStutzen}" />
<CheckBox Content="Riss / Bruch / Scherbe" Style="{StaticResource checkBoxCircle}" IsChecked="{Binding RissBruchScherbe}" />
<ComboBox Name="santype" ItemsSource="{Binding AvaibleSanTyps}" SelectedValue="{Binding Sanierungstyp}" />
</StackPanel>
<Button Grid.Row="3" Grid.ColumnSpan="2" Name="Speichern" Content="Speichern" Click="Speichern_Click" />
</Grid>