Beispiel #1
0
        public void ShowBalloonTip(int timeout, string tipTitle, string tipText, ToolTipIconKind tipIcon)
        {
            var icon = (System.Windows.Forms.ToolTipIcon)tipIcon;

            _notify.ShowBalloonTip(timeout, tipTitle, tipText, icon);
        }
 public void Notify(ToolTipIconKind kind, string title, string message)
 {
     _NotifyIcon.ShowBalloonTip(1000, title, message, kind);
 }