コード例 #1
0
 private void RulesEngineTrayNotify(object sender, TrayNotifyEventArgs args)
 {
     if (InFullscreenMode)
     {
         return;
     }
     Invoke(() => notifyIcon.ShowBalloonTip(TIMEOUT, args.Title, args.TipText, args.TipIcon));
 }
コード例 #2
0
 private void OnTrayNotify(TrayNotifyEventArgs args)
 {
     var handler = TrayNotify;
     if (handler != null) handler(this, args);
 }