예제 #1
0
 public void SendEventRegardingSavingPanelConfigurations()
 {
     OnSavePanelSettings?.Invoke(this, new ProfileHandlerEventArgs()
     {
         ProfileHandlerEA = this
     });
 }
 public static void SavePanelSettings(IProfileHandler profileHandler)
 {
     OnSavePanelSettings?.Invoke(profileHandler, new ProfileHandlerEventArgs {
         ProfileHandlerCaller = profileHandler
     });
 }
 public static bool OnSavePanelSettingsSubscribed()
 {
     return(OnSavePanelSettings != null && OnSavePanelSettings.GetInvocationList().Length > 0);
 }