35 lines
1.5 KiB
XML
35 lines
1.5 KiB
XML
<UserControl x:Class="KanSan.UI.UCKundeEdit"
|
|
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:KanSan.UI"
|
|
mc:Ignorable="d"
|
|
d:DesignHeight="450" d:DesignWidth="800">
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition />
|
|
<RowDefinition />
|
|
<RowDefinition />
|
|
<RowDefinition />
|
|
<RowDefinition />
|
|
</Grid.RowDefinitions>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition />
|
|
<ColumnDefinition />
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<Label Grid.Column="0" Grid.Row="0">Vorname</Label>
|
|
<Label Grid.Column="0" Grid.Row="1">Nachname</Label>
|
|
<Label Grid.Column="0" Grid.Row="2">Strasse</Label>
|
|
<Label Grid.Column="0" Grid.Row="3">Plz</Label>
|
|
<Label Grid.Column="0" Grid.Row="4">Ort</Label>
|
|
|
|
<TextBox Grid.Column="1" Grid.Row="0" Text="{Binding Vorname}" />
|
|
<TextBox Grid.Column="1" Grid.Row="1" Text="{Binding Nachname}" />
|
|
<TextBox Grid.Column="1" Grid.Row="2" Text="{Binding Strasse}" />
|
|
<TextBox Grid.Column="1" Grid.Row="3" Text="{Binding PLZ}" />
|
|
<TextBox Grid.Column="1" Grid.Row="4" Text="{Binding Ort}" />
|
|
</Grid>
|
|
</UserControl>
|