Shadowsocks.View.MenuViewController.ShowBalloonTip C# (CSharp) Méthode

ShowBalloonTip() private méthode

private ShowBalloonTip ( string title, string content, ToolTipIcon icon, int timeout ) : void
title string
content string
icon ToolTipIcon
timeout int
Résultat void
        void ShowBalloonTip(string title, string content, ToolTipIcon icon, int timeout)
        {
            _notifyIcon.BalloonTipTitle = title;
            _notifyIcon.BalloonTipText = content;
            _notifyIcon.BalloonTipIcon = icon;
            _notifyIcon.ShowBalloonTip(timeout);
        }
MenuViewController