Resolve "Add code generator for non win forms projects" #78
@ -4,7 +4,15 @@ namespace UI_WinForms;
|
||||
|
||||
internal static class AppEvents
|
||||
{
|
||||
#region Event: Settings were
|
||||
internal static void ResetAllSubscriptions()
|
||||
{
|
||||
WhenSettingsChanged = null;
|
||||
WhenSectionChanged = null;
|
||||
WhenTextElementChanged = null;
|
||||
WhenTranslationChanged = null;
|
||||
}
|
||||
|
||||
#region Event: Settings were
|
||||
|
||||
internal static event EventHandler? WhenSettingsChanged;
|
||||
|
||||
|
@ -16,6 +16,7 @@ public partial class Main : UserControl
|
||||
if(result == DialogResult.Yes)
|
||||
{
|
||||
Program.RestartMainApp = true;
|
||||
AppEvents.ResetAllSubscriptions();
|
||||
this.ParentForm!.Close();
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user