39 lines
1.7 KiB
XML
39 lines
1.7 KiB
XML
<UserControl x:Class="KanSan.UI.UCLeistungsverzeichnisPosition"
|
|
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"
|
|
xmlns:sd="clr-namespace:KanSan.SampleData"
|
|
mc:Ignorable="d"
|
|
d:DesignHeight="450" d:DesignWidth="800">
|
|
<d:UserControl.DataContext>
|
|
<sd:LeistungsverzeichnisPositionViewModelSampleData />
|
|
</d:UserControl.DataContext>
|
|
<Grid>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition />
|
|
<ColumnDefinition />
|
|
|
|
</Grid.ColumnDefinitions>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition />
|
|
<RowDefinition />
|
|
<RowDefinition />
|
|
<RowDefinition />
|
|
<RowDefinition />
|
|
</Grid.RowDefinitions>
|
|
<Label Grid.Column="0" Grid.Row="0" Content="Positionsnummer" />
|
|
<Label Grid.Column="0" Grid.Row="1" Content="Beschreibung" />
|
|
<Label Grid.Column="0" Grid.Row="2" Content="Einheit" />
|
|
<Label Grid.Column="0" Grid.Row="3" Content="Tag" />
|
|
|
|
<TextBox Grid.Column="1" Grid.Row="0" Text="{Binding Positionsnummer}" />
|
|
<TextBox Grid.Column="1" Grid.Row="1" Text="{Binding Beschreibung}" />
|
|
<TextBox Grid.Column="1" Grid.Row="2" Text="{Binding Einheit}" />
|
|
<TextBox Grid.Column="1" Grid.Row="3" Text="{Binding Tag}" />
|
|
|
|
<Button Grid.Column="0" Grid.Row="4" Grid.ColumnSpan="2" Content="Speichern" Name="Save" Click="Save_Click" />
|
|
</Grid>
|
|
</UserControl>
|