예제 #1
0
 private static void OnDoNotifyAction(SLNotifyerEventArgs args)
 {
     switch(args.Action)
     {
         case NotifyActionTypes.ShowLog:
             SLLogEvents.FireShowLogFile();
             break;
     }
 }
 public static void FireDoNotifyerAction(SLNotifyerEventArgs args)
 {
     if (DoNotifyerAction != null) DoNotifyerAction(args);
 }