こんにちは、
アプリケーション全体にバルーンチップを作成します。私の問題は、すべてのバルーンチップがタスクバーにとどまり、それらが消えるにはカーソルを合わせる必要があるということです。
public static bool SetBalloonTip(string balloonTipTitle, string balloonTipText, ToolTipIcon balloonTipIcon)
{
bool result = false;
NotifyIcon notifyIcon;
try
{
notifyIcon = new NotifyIcon();
notifyIcon.Icon = SystemIcons.Information;
notifyIcon.BalloonTipTitle = balloonTipTitle;
notifyIcon.BalloonTipText = balloonTipText;
notifyIcon.BalloonTipIcon = balloonTipIcon;
notifyIcon.Visible = true;
notifyIcon.ShowBalloonTip(30000);
result = true;
}
catch (Exception)
{
throw;
}
return result;
}
私の質問は、通知アイコンが表示された後に非表示にするにはどうすればよいですか?