rote rahmen für req im fallabschluss

This commit is contained in:
Meik
2025-11-13 15:03:17 +01:00
parent 5a8cbe8716
commit 7653b92eb6
8 changed files with 206 additions and 93 deletions

View File

@@ -199,14 +199,15 @@
</UserControl.Resources>
<Grid>
<ComboBox x:Name="ComboBoxControl"
DropDownOpened="ComboBoxControl_DropDownOpened"
DropDownClosed="ComboBoxControl_DropDownClosed"
Background="{Binding ElementName=ComboBoxPagableUc, Path=ComboBoxBackground}"
BorderBrush="{Binding ElementName=ComboBoxPagableUc, Path=BorderBrush}"
ItemsSource="{Binding ElementName=ComboBoxPagableUc, Path=ItemData}"
SelectedItem="{Binding RelativeSource={RelativeSource AncestorType={x:Type local:ComboBoxPageable}}, Path=SelectedItem, Mode=TwoWay}"
DisplayMemberPath="Key"
Template="{StaticResource ComboBoxPagableTemplate}" />
</Grid>
<ComboBox x:Name="ComboBoxControl"
DropDownOpened="ComboBoxControl_DropDownOpened"
DropDownClosed="ComboBoxControl_DropDownClosed"
Background="{Binding ElementName=ComboBoxPagableUc, Path=ComboBoxBackground}"
BorderBrush="{Binding ElementName=ComboBoxPagableUc, Path=BorderBrush}"
BorderThickness="0"
ItemsSource="{Binding ElementName=ComboBoxPagableUc, Path=ItemData}"
SelectedItem="{Binding RelativeSource={RelativeSource AncestorType={x:Type local:ComboBoxPageable}}, Path=SelectedItem, Mode=TwoWay}"
DisplayMemberPath="Key"
Template="{StaticResource ComboBoxPagableTemplate}" />
</Grid>
</UserControl>