Add KgNrTemplate

This commit is contained in:
2023-05-01 22:18:06 +02:00
parent c8f0537976
commit 9e61ead3ad

View File

@ -29,5 +29,13 @@
<TextBlock Text="{Binding Name}"/>
</StackPanel>
</DataTemplate>
<DataTemplate x:Key="KgNrTemplate">
<StackPanel Orientation="Horizontal">
<TextBlock Text="{Binding Name}"/>
<TextBlock Text=" ("/>
<TextBlock Text="{Binding KgNr}"/>
<TextBlock Text=")"/>
</StackPanel>
</DataTemplate>
</Application.Resources>
</Application>