using Hardcodet.Wpf.TaskbarNotification; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace EEMSUIClient.Services { public interface ITrayControl : IDisposable { TaskbarIcon? Tray { set; } bool IsExiting { get; } void HideToTray(); void ShowMainWindow(); void Exit(); void ShowBalloonTip(); } }