我的应用程序中有一个纸盘图标。当我在后台加载内容时,我将显示提示框20秒钟。但是,如果后台加载过早完成(例如,在10秒钟之内),我想隐藏气球提示。当前,隐藏气球提示的唯一方法是单击气球提示中的关闭图标。

    Public Tray As NotifyIcon
    Tray = New NotifyIcon

    Tray.BalloonTipIcon = ToolTipIcon.Info
    Tray.BalloonTipText = "Loading"
    Tray.BalloonTipTitle = "Please Wait"
    Tray.ShowBalloonTip(20 * 1000)

是否可以在达到指定时间之前以编程方式隐藏气球提示?

最佳答案

试试这个:

Tray.Visible = true;

更多信息here

希望有帮助!

10-06 00:06