Ejemplo n.º 1
0
 private void Settings_ExecutableExited(object sender, ExecutableEventArgs e)
 {
     if (TrayIcon is null)
     {
         return;
     }
     TrayIcon.ShowBalloonTip(3000, e.Executable.Name, l.ExecutableStoppedMessage, WF.ToolTipIcon.Info);
 }
Ejemplo n.º 2
0
 private void Settings_ExecutableError(object sender, ExecutableEventArgs e)
 {
     if (TrayIcon is null)
     {
         return;
     }
     TrayIcon.ShowBalloonTip(3000, e.Executable.Name, l.ExecutableErrorMessage, WF.ToolTipIcon.Error);
 }
Ejemplo n.º 3
0
 private void Executable_ProcessExited(object sender, ExecutableEventArgs e)
 {
     OnExecutableExited(e.Executable);
 }
Ejemplo n.º 4
0
 private void Executable_ProcessPathError(object sender, ExecutableEventArgs e)
 {
     OnExecutablePathError(e.Executable);
 }
Ejemplo n.º 5
0
 private void Settings_ExecutablePathError(object sender, ExecutableEventArgs e)
 {
     TrayIcon.ShowBalloonTip(3000, string.Format("{0}: {1}", e.Executable.Name, l.ExecutableNotFoundWarningCaption), l.ExecutableNotFoundWarningMessage, WF.ToolTipIcon.Warning);
 }