DeliveryAdminWindow: Fix übernahme logic

This commit is contained in:
2023-10-22 01:09:28 +02:00
parent 25d681a1d8
commit d5102c9cd7
3 changed files with 53 additions and 45 deletions

View File

@ -252,9 +252,9 @@ namespace Elwig.Windows {
foreach (var ccb in CheckComboBoxInputs)
ccb.SelectedItems.Clear();
foreach (var cb in CheckBoxInputs)
cb.IsChecked = false;
cb.IsChecked = cb.IsThreeState ? null : false;
foreach (var rb in RadioButtonInputs)
rb.IsChecked = false;
rb.IsChecked = rb.IsThreeState ? null : false;
if (validate) ValidateRequiredInputs();
}