C# 如何让窗体最小化到后台托管(类似QQ托管一样)

首先,向想要后台运行的 主窗体设计页面添加两个控件

 

notifyIcon 控件 和 contextMenuStrip控件

 

notifyIcon 控件 中的  Icon属性 增加图标 (这个图标就是你后台托管时显示的图标)

 

在 contextMenuStrip 属性中 增加 contextMenuStrip控件的名字 (主要让 托管的图标响应右键,显示右键菜单)

 

在 contextMenuStrip控件 中增加 让托管中显示的 右键菜单

 

接着,在主窗体的代码页面中 增加 this.SizeChanged +=new EventHandler(Form1_SizeChanged);

 

这个为响应窗体上 最大化,最小化,关闭 所触发的事件

 

 

事件为

 

[c-sharp]  view plain copy
  1. private void Form1_SizeChanged(object sender,EventArgs e)  
  2. {  
  3.     if (this.WindowState == FormWindowState.Minimized)  
  4.     {  
  5.         this.Hide();//隐藏主窗体  
  6.         this.notifyIcon1.Visible = true;//让notifyIcon1图标显示  
  7.     }  
  8. }  

 

在 notifyIcon控件 鼠标点击事件中 添加

 

[c-sharp]  view plain copy
  1. private void notifyIcon1_MouseClick(object sender, MouseEventArgs e) //当鼠标点击托管图标时触发  
  2. {  
  3.     if (e.Button == MouseButtons.Left)//当鼠标点击为左键时  
  4.     {  
  5.         this.Show();//显示主窗体  
  6.         this.WindowState = FormWindowState.Normal;//主窗体的大小为默认  
  7.     }  
  8. }  

 

在contextMenuStrip控件中 设定的 菜单中响应事件

[c-sharp]  view plain copy
  1. private void 退出ToolStripMenuItem_Click(object sender, EventArgs e)//鼠标右击托管图标时触发的事件  
  2. {  
  3.     this.Close();  
  4. }  

 

这样就可以让你的窗体 在后台托管了

 

完整的代码如下:

[c-sharp]  view plain copy
  1. using System;  
  2. using System.Collections.Generic;  
  3. using System.ComponentModel;  
  4. using System.Data;  
  5. using System.Drawing;  
  6. using System.Linq;  
  7. using System.Text;  
  8. using System.Windows.Forms;  
  9.   
  10. namespace FormBackstageCustody  
  11. {  
  12.     public partial class Form1 : Form  
  13.     {  
  14.         public Form1()  
  15.         {  
  16.             InitializeComponent();  
  17.   
  18.             this.SizeChanged +=new EventHandler(Form1_SizeChanged);  
  19.         }  
  20.   
  21.         private void Form1_SizeChanged(object sender,EventArgs e)  
  22.         {  
  23.             if (this.WindowState == FormWindowState.Minimized)  
  24.             {  
  25.                 this.Hide();//隐藏主窗体  
  26.                 this.notifyIcon1.Visible = true;//让notifyIcon1图标显示  
  27.             }  
  28.         }  
  29.   
  30.         private void notifyIcon1_MouseClick(object sender, MouseEventArgs e) //当鼠标点击托管图标时触发  
  31.         {  
  32.             if (e.Button == MouseButtons.Left)//当鼠标点击为左键时  
  33.             {  
  34.                 this.Show();//显示主窗体  
  35.                 this.WindowState = FormWindowState.Normal;//主窗体的大小为默认  
  36.             }  
  37.         }  
  38.   
  39.         private void 退出ToolStripMenuItem_Click(object sender, EventArgs e)//鼠标右击托管图标时触发的事件  
  40.         {  
  41.             this.Close();  
  42.         }  
  43.     }  
  44. }  
  45. 原文出处:http://blog.csdn.net/zhuimeng11025/article/details/6085312

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值