Exemplo n.º 1
0
        public void ShowScreenShotNotification(string FilePath)
        {
            if (!_settings.Tray.ShowNotifications)
            {
                return;
            }

            _notificationStack.Add(new ScreenShotBalloon(FilePath));

            Show();
        }
Exemplo n.º 2
0
        public void ShowMessage(string Message)
        {
            if (!_settings.UI.TrayNotify)
            {
                return;
            }

            _notificationStack.Add(new StatusBalloon(Message, false));

            Show();
        }
Exemplo n.º 3
0
        public void ShowNotification(INotification Notification)
        {
            if (!_settings.Tray.ShowNotifications)
            {
                return;
            }

            _notificationStack.Add(new NotificationBalloon(Notification));

            Show();
        }