DeliveryAdminWindow: Fix übernahme logic
This commit is contained in:
@ -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();
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user