49 lines
2.4 KiB
XML
49 lines
2.4 KiB
XML
<UserControl x:Class="SewerStammGen.WPF.Views.SchachtEditView"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:local="clr-namespace:SewerStammGen.WPF.Views"
|
|
mc:Ignorable="d"
|
|
d:DesignHeight="450" d:DesignWidth="800">
|
|
<Grid>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="auto" />
|
|
<ColumnDefinition Width="520" />
|
|
</Grid.ColumnDefinitions>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="auto" />
|
|
<RowDefinition Height="auto" />
|
|
<RowDefinition Height="auto" />
|
|
<RowDefinition Height="auto" />
|
|
<RowDefinition Height="auto" />
|
|
<RowDefinition Height="auto" />
|
|
<RowDefinition />
|
|
</Grid.RowDefinitions>
|
|
|
|
<Label Grid.Column="0" Grid.Row="0" Content="Bezeichnung" />
|
|
<Label Grid.Column="0" Grid.Row="1" Content="Rechtswert" />
|
|
<Label Grid.Column="0" Grid.Row="2" Content="Hochwert" />
|
|
<Label Grid.Column="0" Grid.Row="3" Content="Sohlhöhe" />
|
|
<Label Grid.Column="0" Grid.Row="4" Content="Deckelhöhe" />
|
|
<Label Grid.Column="0" Grid.Row="5" Content="Entwässerungsart" />
|
|
|
|
<TextBox Margin="2" Grid.Column="1" Grid.Row="0" Text="{Binding Objektbezeichnung}" />
|
|
<TextBox Margin="2" Grid.Column="1" Grid.Row="1" Text="{Binding RechtsWert}" />
|
|
<TextBox Margin="2" Grid.Column="1" Grid.Row="2" Text="{Binding HochWert}" />
|
|
<TextBox Margin="2" Grid.Column="1" Grid.Row="3" Text="{Binding SohlHoehe}" />
|
|
<TextBox Margin="2" Grid.Column="1" Grid.Row="4" Text="{Binding DeckelHoehe}" />
|
|
<DockPanel Grid.Column="1" Grid.Row="5">
|
|
<RadioButton Style="{StaticResource ToggleButtonList}" Content="Regenwasser" />
|
|
<RadioButton Style="{StaticResource ToggleButtonList}" Content="Schmutzwasser" />
|
|
<RadioButton Style="{StaticResource ToggleButtonList}" Content="Mischwasser" />
|
|
</DockPanel>
|
|
|
|
|
|
<StackPanel Grid.ColumnSpan="2" Grid.Row="6">
|
|
<Button Content="Speichern" Command="{Binding Speichern}" />
|
|
</StackPanel>
|
|
|
|
</Grid>
|
|
</UserControl>
|