[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:
@@ -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();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user