added pflichtfelder

This commit is contained in:
Meik
2025-11-13 11:48:41 +01:00
parent 86aea836a9
commit 0d920f65e2

View File

@@ -162,11 +162,10 @@
</StackPanel> </StackPanel>
<Border x:Name="CategoryValidationBorder" <Border x:Name="CategoryValidationBorder"
Margin="0 5 0 0" Margin="0 5 0 0"
Padding="1"
BorderThickness="1" BorderThickness="1"
CornerRadius="7.5" CornerRadius="7.5"
Background="{DynamicResource BackgroundColor.DetailsPage.DataHistory.ValueColumn}" Background="Transparent"
BorderBrush="{DynamicResource BackgroundColor.Menu.SubCategory.Hover}"> BorderBrush="Transparent">
<local:HierarchicalSelectionControl x:Name="CategorySelectionControl" <local:HierarchicalSelectionControl x:Name="CategorySelectionControl"
SelectedItem="{Binding SelectedCategory, ElementName=CloseCaseDialogUc, Mode=TwoWay}" SelectedItem="{Binding SelectedCategory, ElementName=CloseCaseDialogUc, Mode=TwoWay}"
ComboBoxBackground="{DynamicResource BackgroundColor.DetailsPage.DataHistory.ValueColumn}" ComboBoxBackground="{DynamicResource BackgroundColor.DetailsPage.DataHistory.ValueColumn}"
@@ -184,20 +183,18 @@
<Border x:Name="QuickTicketValidationBorder" <Border x:Name="QuickTicketValidationBorder"
Margin="0 5 0 0" Margin="0 5 0 0"
Padding="1"
BorderThickness="1" BorderThickness="1"
CornerRadius="7.5" CornerRadius="7.5"
Background="{DynamicResource BackgroundColor.DetailsPage.DataHistory.ValueColumn}" Background="Transparent"
BorderBrush="{DynamicResource BackgroundColor.Menu.SubCategory.Hover}"> BorderBrush="Transparent">
<ComboBox x:Name="QuickTicketSelection" <ComboBox x:Name="QuickTicketSelection"
Background="{DynamicResource BackgroundColor.DetailsPage.DataHistory.ValueColumn}" Background="{DynamicResource BackgroundColor.DetailsPage.DataHistory.ValueColumn}"
BorderBrush="Transparent" BorderBrush="{DynamicResource BackgroundColor.Menu.SubCategory.Hover}"
BorderThickness="0" SelectedIndex="0"
SelectedIndex="0" SelectionChanged="QuickTicketSelection_SelectionChanged"
SelectionChanged="QuickTicketSelection_SelectionChanged" PreviewKeyDown="Combobox_PreviewKeyDown"
PreviewKeyDown="Combobox_PreviewKeyDown" DropDownOpened="DropDownOpened"
DropDownOpened="DropDownOpened" DropDownClosed="DropDownClosed">
DropDownClosed="DropDownClosed">
</ComboBox> </ComboBox>
</Border> </Border>
</StackPanel> </StackPanel>