37 lines
1.9 KiB
XML
37 lines
1.9 KiB
XML
<UserControl x:Class="GuiWPF.Views.SewerObjectDetailsPageView"
|
|
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:GuiWPF.Views"
|
|
mc:Ignorable="d"
|
|
d:DesignHeight="450" d:DesignWidth="800">
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="auto" />
|
|
<RowDefinition Height="auto" />
|
|
<RowDefinition Height="auto" />
|
|
<RowDefinition Height="auto" />
|
|
<RowDefinition Height="auto" />
|
|
<RowDefinition Height="auto" />
|
|
</Grid.RowDefinitions>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="auto" />
|
|
<ColumnDefinition Width="auto" MinWidth="400" />
|
|
</Grid.ColumnDefinitions>
|
|
<Label Grid.Column="0" Grid.Row="0" Content="Objektname" />
|
|
<Label Grid.Column="0" Grid.Row="1" Content="Obere Schacht" />
|
|
<Label Grid.Column="0" Grid.Row="2" Content="Untere Schacht" />
|
|
<Label Grid.Column="0" Grid.Row="3" Content="Objektlänge" />
|
|
<Label Grid.Column="0" Grid.Row="4" Content="Durchmesser" />
|
|
<Label Grid.Column="0" Grid.Row="5" Content="Bemerkung" />
|
|
|
|
<TextBox Grid.Column="1" Grid.Row="0" Text="{Binding ObjektName}" />
|
|
<TextBox Grid.Column="1" Grid.Row="1" Text="{Binding ObenName}" />
|
|
<TextBox Grid.Column="1" Grid.Row="2" Text="{Binding UntenName}" />
|
|
<TextBox Grid.Column="1" Grid.Row="3" Text="{Binding ObjektLength}" />
|
|
<TextBox Grid.Column="1" Grid.Row="4" Text="{Binding Durchmesser}" />
|
|
<TextBox Grid.Column="1" Grid.Row="5" Text="{Binding Bemerkung}" />
|
|
</Grid>
|
|
</UserControl>
|