Resolve "Add code generator for non win forms projects" #78

Merged
thorsten merged 16 commits from 6-add-code-generator-for-non-win-forms-projects into main 2022-11-01 18:28:15 +00:00
Showing only changes of commit c77bf8bd96 - Show all commits

View File

@ -212,7 +212,7 @@ public sealed partial class Setting : UserControl
};
// Update the explanation text. Therefore, we need to get the setting object through the chain of parents:
var setting = (Setting) ((Control) sender).Parent.Parent.Parent;
var setting = (Setting) (((Control) sender!)!).Parent.Parent.Parent;
setting.UpdateExplanation();
};