使用NotifyIcon将窗口最小化到任务栏区域

采用NotifyIcon控件、记得要将窗体showintaskbar=true/false,它主要用来控制是否在任务栏显示。记得要给icon设置图片。
代码如下:

 1        // 窗体最小化事件
 2         private   void  pbMinisize_Click( object  sender, System.EventArgs e)
 3          {
 4               //  Set the WindowState to normal if the form is minimized.
 5              WindowState  =  FormWindowState.Minimized;    
 6               //  指示是否在Windows任务栏中显示窗体
 7               this .ShowInTaskbar  =   false ;
 8              notifyIcon1.Visible  =   true ;
 9          }
10           #endregion
11          
12        // 任务栏区域的双击事件
13           private   void  notifyIcon1_DoubleClick( object  Sender, EventArgs e) 
14          {
15               //  Show the form when the user double clicks on the notify icon.
16               if  ( this .WindowState  ==  FormWindowState.Minimized)        
17                   this .WindowState  =  FormWindowState.Normal;
18               this .Activate();
19               this .ShowInTaskbar  =   true ;
20               this .notifyIcon1.Visible  =   false ;
21          }
用menuItem来设置任务栏区域的click菜单。
        // 退出
        private   void  menuItem1_Click( object  Sender, EventArgs e) 
        {
            
this .Close();
        }
      
        //
打开
         private   void  menuItem2_Click( object  sender, System.EventArgs e)
        {
            
this .WindowState  =  FormWindowState.Normal;
            
this .Activate();
            
this .ShowInTaskbar  =   true ;
            
this .notifyIcon1.Visible  =   false ;
        }

转载于:https://www.cnblogs.com/ensure125/archive/2007/04/12/711024.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值