ITrayControl.cs 434 B

1234567891011121314151617181920
  1. using Hardcodet.Wpf.TaskbarNotification;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace EEMSUIClient.Services
  8. {
  9. public interface ITrayControl : IDisposable
  10. {
  11. TaskbarIcon? Tray { set; }
  12. bool IsExiting { get; }
  13. void HideToTray();
  14. void ShowMainWindow();
  15. void Exit();
  16. void ShowBalloonTip();
  17. }
  18. }