newSanwindow hinzugefügt

This commit is contained in:
Husky
2020-06-13 16:46:18 +02:00
parent 9442d94de5
commit dc07ba2638
7 changed files with 56 additions and 4 deletions

View File

@@ -5,17 +5,17 @@
<DataTemplate x:Key="SanierungViewModelDataTemplate" DataType="{x:Type l:UCHarzSanierung }">
<l:UCHarzSanierung />
</DataTemplate>
<DataTemplate x:Key="SelectNewTätigkeitenLVPosition" DataType="{x:Type l:UCTätigkeitNewSelect}">
<DataTemplate x:Key="SelectNewTätigkeitenLVPosition">
<Border BorderThickness="2" BorderBrush="Red">
<ItemsControl ItemsSource="{Binding LVPositionen }">
<ItemsControl.ItemsPanel>
<ItemsPanelTemplate>
<UniformGrid Rows="8" Columns="3" />
<UniformGrid Rows="4" Columns="3" />
</ItemsPanelTemplate>
</ItemsControl.ItemsPanel>
<ItemsControl.ItemTemplate>
<DataTemplate>
<Button Content="{Binding Beschreibung}" />
<Button Content="{Binding Beschreibung}" Command="Test" />
</DataTemplate>
</ItemsControl.ItemTemplate>
</ItemsControl>