41 lines
2.0 KiB
XML
41 lines
2.0 KiB
XML
<UserControl x:Class="SewerStammGen.Views.UCEditSchacht"
|
|
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.Views"
|
|
mc:Ignorable="d"
|
|
d:DesignHeight="450" d:DesignWidth="800">
|
|
<Grid>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="auto" />
|
|
<ColumnDefinition Width="400" />
|
|
</Grid.ColumnDefinitions>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="auto" />
|
|
<RowDefinition Height="auto" />
|
|
<RowDefinition Height="auto" />
|
|
<RowDefinition Height="auto" />
|
|
<RowDefinition Height="auto" />
|
|
<RowDefinition />
|
|
</Grid.RowDefinitions>
|
|
|
|
<Label FontSize="20" Grid.Column="0" Grid.Row="0" Content="Bezeichnung" />
|
|
<Label FontSize="20" Grid.Column="0" Grid.Row="1" Content="Rechtswert" />
|
|
<Label FontSize="20" Grid.Column="0" Grid.Row="2" Content="Hochwert" />
|
|
<Label FontSize="20" Grid.Column="0" Grid.Row="3" Content="Sohlhöhe" />
|
|
<Label FontSize="20" Grid.Column="0" Grid.Row="4" Content="Deckelhöhe" />
|
|
|
|
<TextBox Margin="2" FontSize="20" Grid.Column="1" Grid.Row="0" Text="{Binding X}" />
|
|
<TextBox Margin="2" FontSize="20" Grid.Column="1" Grid.Row="1" Text="{Binding X}" />
|
|
<TextBox Margin="2" FontSize="20" Grid.Column="1" Grid.Row="2" Text="{Binding X}" />
|
|
<TextBox Margin="2" FontSize="20" Grid.Column="1" Grid.Row="3" Text="{Binding X}" />
|
|
<TextBox Margin="2" FontSize="20" Grid.Column="1" Grid.Row="4" Text="{Binding X}" />
|
|
|
|
<StackPanel Grid.ColumnSpan="2" Grid.Row="5">
|
|
<Button FontSize="20" Content="Speichern" />
|
|
</StackPanel>
|
|
|
|
</Grid>
|
|
</UserControl>
|