BaseDataWindow: Add fields for season

This commit is contained in:
2023-11-05 12:20:59 +01:00
parent 6435a649b4
commit 7fe2ea76c3
12 changed files with 244 additions and 57 deletions

View File

@ -63,10 +63,12 @@ namespace Elwig.Windows {
OriginalValues = new();
DefaultValues = new();
Closing += OnClosing;
Loaded -= base.OnLoaded;
Loaded += OnLoaded;
Loaded += base.OnLoaded;
}
private void OnLoaded(object sender, RoutedEventArgs evt) {
private new void OnLoaded(object sender, RoutedEventArgs evt) {
TextBoxInputs = ControlUtils.FindAllChildren<TextBox>(this, ExemptInputs).ToArray();
ComboBoxInputs = ControlUtils.FindAllChildren<ComboBox>(this, ExemptInputs).ToArray();
CheckBoxInputs = ControlUtils.FindAllChildren<CheckBox>(this, ExemptInputs).ToArray();