| 1234567891011121314151617181920 |
- 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();
- }
- }
|