iSpyApplication.MainForm.ControlNotification C# (CSharp) Method

ControlNotification() private method

private ControlNotification ( object sender, iSpyApplication.NotificationType e ) : void
sender object
e iSpyApplication.NotificationType
return void
        private void ControlNotification(object sender, NotificationType e)
        {
            if (Conf.BalloonTips)
            {
                notifyIcon1.BalloonTipText =
                    $"{(string.IsNullOrEmpty(e.OverrideMessage) ? LocRm.GetString(e.Type) : e.OverrideMessage).ToUpper()}:{NL}{e.Text}";
                notifyIcon1.ShowBalloonTip(1500);
            }
        }
MainForm