zoukankan      html  css  js  c++  java
  • NotifyIcon用法

    -------------------控件NotifyIcon-----------
    //客户端调用
    private void btnShowError_Click(object sender, EventArgs e)
    {
    string error = "程序出错";
    BubbleHelper.Instance.SetBubbleTime(1000, error);
    }
    //提取的气泡提示帮助类
    public class BubbleHelper
    {
    private static BubbleHelper instance;

    public static BubbleHelper Instance
    {
    get
    {
    if (instance == null)
    {
    instance = new BubbleHelper();
    }
    return BubbleHelper.instance;
    }
    }

    NotifyIcon notify = null;
    public void SetBubbleTime(int millisecond, string error)
    {
    if (notify == null)
    {
    notify = new NotifyIcon();
    }

    this.notify.Visible = true;

    string path = Application.StartupPath + "//error.ico";
    this.notify.Icon = new Icon(path);
    this.notify.ShowBalloonTip(millisecond, "异常提示", error, ToolTipIcon.Error);
    }
    }

     

  • 相关阅读:
    Velocity Obstacle
    游戏AI技术 2
    游戏AI技术
    状态同步
    Realtime Rendering 1.1
    Steering Behaviors
    Realtime Rendering 6
    网络同步
    War3编辑器
    Realtime Rendering 5
  • 原文地址:https://www.cnblogs.com/YYkun/p/5662976.html
Copyright © 2011-2022 走看看