Files
Kansan/KanSan/UI/Objekte/FrmNewObjekt.xaml
2020-04-18 15:19:58 +02:00

33 lines
1.4 KiB
XML

<Window x:Class="KanSan.UI.FrmNewObjekt"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:KanSan.UI"
mc:Ignorable="d"
Title="FrmNewObjekt" Height="450" Width="800">
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition />
<ColumnDefinition />
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition />
<RowDefinition />
<RowDefinition />
<RowDefinition />
<RowDefinition />
</Grid.RowDefinitions>
<Button Grid.Column="0" Grid.ColumnSpan="2" Grid.Row="0" Content="Speichern" Name="Speichern" Click="Speichern_Click" />
<Label Grid.Row="1" Content="Obere Punkt" />
<Label Grid.Row="2" Content="Untere Punkt" />
<Label Grid.Row="3" Content="Strasse" />
<Label Grid.Row="4" Content="Durchmesser" />
<TextBox Grid.Column="1" Grid.Row="1" Text="{Binding PunktOben}" />
<TextBox Grid.Column="1" Grid.Row="2" Text="{Binding PunktUnten}" />
<TextBox Grid.Column="1" Grid.Row="3" Text="{Binding Strasse}" />
<TextBox Grid.Column="1" Grid.Row="4" Text="{Binding DN}" />
</Grid>
</Window>