ObjekteListe angefangen

This commit is contained in:
Husky
2020-03-17 14:26:11 +01:00
parent 009c54cc84
commit 8b1336a014
15 changed files with 1422 additions and 167 deletions

View File

@@ -0,0 +1,28 @@
<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" />
<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>