ObjekteListe angefangen
This commit is contained in:
28
KanSan/UI/Objekte/FrmNewObjekt.xaml
Normal file
28
KanSan/UI/Objekte/FrmNewObjekt.xaml
Normal 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>
|
||||
Reference in New Issue
Block a user