控制台托盘

 1  internal class NotifyIconHelper
 2     {
 3         public NotifyIconHelper()
 4         {
 5             NOTIFY_ICON.Icon = new Icon(Environment.CurrentDirectory + "\\audit.ico");
 6             NOTIFY_ICON.Visible = false;
 7             NOTIFY_ICON.Text = "DMS升级程序";
 8 
 9             var menu = new ContextMenu();
10             var item = new MenuItem
11             {
12                 Text = "右键菜单,还没有添加事件",
13                 Index = 0
14             };
15 
16             menu.MenuItems.Add(item);
17             NOTIFY_ICON.ContextMenu = menu;
18 
19             NOTIFY_ICON.MouseDoubleClick += _NotifyIcon_MouseDoubleClick;
20         }
21 
22         private static void _NotifyIcon_MouseDoubleClick(object sender, MouseEventArgs e)
23         {
24             Console.WriteLine("托盘被双击.");
25         }
26 
27         #region 托盘图标
28 
29         private static readonly NotifyIcon NOTIFY_ICON = new NotifyIcon();
30 
31         public static void ShowNotifyIcon()
32         {
33             NOTIFY_ICON.Visible = true;
34             NOTIFY_ICON.ShowBalloonTip(3000, "", "DMS更新程序正在后台运行,请不要关闭!", ToolTipIcon.None);
35         }
36 
37         public static void HideNotifyIcon()
38         {
39             NOTIFY_ICON.Visible = false;
40         }
41 
42         #endregion
43     }

 

转载于:https://www.cnblogs.com/stonescs/p/5072303.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值