<UserControl x:Class="DevTyr.MvvmObjectsDemo.View.CompanyView"
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"
mc:Ignorable="d"
d:DesignHeight="300" d:DesignWidth="300">
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto"/>
<ColumnDefinition Width="*"/>
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="Auto"/>
<RowDefinition Height="Auto"/>
<RowDefinition Height="Auto"/>
<RowDefinition Height="Auto"/>
<RowDefinition Height="Auto"/>
</Grid.RowDefinitions>
<TextBlock Text="Name" Grid.Row="0"/>
<TextBlock Text="Strasse" Grid.Row="1"/>
<TextBlock Text="Hausnummer" Grid.Row="2"/>
<TextBlock Text="Stadt" Grid.Row="3"/>
<TextBlock Text="PLZ" Grid.Row="4"/>
<TextBlock Text="Land" Grid.Row="5"/>
<TextBox Text="{Binding Name}" Grid.Column="1" Grid.Row="0"/>
<TextBox Text="{Binding Street}" Grid.Column="1" Grid.Row="1"/>
<TextBox Text="{Binding StreetNumber}" Grid.Column="1" Grid.Row="2"/>
<TextBox Text="{Binding City}" Grid.Column="1" Grid.Row="3"/>
<TextBox Text="{Binding Zip}" Grid.Column="1" Grid.Row="4"/>
<TextBox Text="{Binding Country}" Grid.Column="1" Grid.Row="5"/>
</Grid>
</UserControl>