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

@@ -20,15 +20,22 @@
<TextBlock Text="{Binding Converter={StaticResource LanguageConverter}, ConverterParameter=Dialog.CloseCase.CloseTicket.ErrorType}"
FontWeight="Bold"
Foreground="{DynamicResource FontColor.Menu.Categories}" />
<ComboBox x:Name="ErrorTypeComboBox"
Background="{DynamicResource BackgroundColor.DetailsPage.DataHistory.ValueColumn}"
BorderBrush="{DynamicResource BackgroundColor.Menu.SubCategory.Hover}"
SelectedItem="{Binding ElementName=CloseTicketDialogUc, Path=SelectedErrorType, Mode=TwoWay}"
Margin="0 5 0 0"
DropDownOpened="DropDownOpened"
DropDownClosed="DropDownClosed"
PreviewKeyDown="ErrorTypeComboBox_PreviewKeyDown"
/>
<Border x:Name="ErrorTypeValidationBorder"
Margin="0 5 0 0"
BorderThickness="1"
Padding="1"
CornerRadius="7.5"
Background="{DynamicResource BackgroundColor.DetailsPage.DataHistory.ValueColumn}"
BorderBrush="{DynamicResource BackgroundColor.Menu.SubCategory.Hover}">
<ComboBox x:Name="ErrorTypeComboBox"
Background="{DynamicResource BackgroundColor.DetailsPage.DataHistory.ValueColumn}"
BorderBrush="Transparent"
BorderThickness="0"
SelectionChanged="ErrorTypeComboBox_SelectionChanged"
DropDownOpened="DropDownOpened"
DropDownClosed="DropDownClosed"
PreviewKeyDown="ErrorTypeComboBox_PreviewKeyDown" />
</Border>
<TextBlock Text="{Binding Converter={StaticResource LanguageConverter}, ConverterParameter=Dialog.CloseCase.CloseTicket.Solution}"
FontWeight="Bold"
Foreground="{DynamicResource FontColor.Menu.Categories}"