[VMware Launcher 2.0.9.7]

- Enhancement: #4 Verify Windows services have properly terminated upon shutdown.
- Moved instanciation of ServiceControl class from Startup.xaml.cs to StatusWindow.xaml.cs.
This commit is contained in:
2021-04-13 12:04:14 +01:00
parent a9d7e48fac
commit f5b9c8f7a7
10 changed files with 72 additions and 9 deletions
+14 -2
View File
@@ -69,12 +69,24 @@ namespace VMwareLauncher
}
}
public void Destroy()
public void WarnServiceShutdownFailure()
{
trayIcon.ShowBalloonTip(5000,
"VMware Launcher",
"VMware Launcher was unable to shutdown one or more Workstation services.",
ToolTipIcon.Warning);
}
public void ShowShutdownSuccessMessage()
{
trayIcon.ShowBalloonTip(3000,
"VMware Launcher",
"VMware Launcher has stopped all background Workstation services. Enjoy your day :-)",
ToolTipIcon.None);
ToolTipIcon.Info);
}
public void Destroy()
{
trayIcon.Dispose();
}
}