26 lines
1.0 KiB
XML
26 lines
1.0 KiB
XML
<Window x:Class="KanSan.UI.WindowBaustelleEdit"
|
|
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="FRMBaustelle" Height="450" Width="800">
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition />
|
|
<RowDefinition />
|
|
<RowDefinition />
|
|
</Grid.RowDefinitions>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="80" />
|
|
<ColumnDefinition />
|
|
</Grid.ColumnDefinitions>
|
|
<Label>Ort</Label>
|
|
<Label Grid.Row="1">Strasse</Label>
|
|
|
|
<TextBox Grid.Column="1" Name="Ort" Text="{Binding Ort}"/>
|
|
<TextBox Grid.Column="1" Name="Strasse" Grid.Row="1" Text="{Binding Strasse}" />
|
|
</Grid>
|
|
</Window>
|