博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
winform最小化及添加右键
阅读量:5991 次
发布时间:2019-06-20

本文共 1433 字,大约阅读时间需要 4 分钟。

private void PrintService_SizeChanged(object sender, EventArgs e)        {            if (this.WindowState == FormWindowState.Minimized)            {                this.Hide();                this.notifyIcon.Visible = true;            }        }        private void PrintService_FormClosing(object sender, FormClosingEventArgs e)        {            if (MessageBox.Show("是否关闭服务", "确认", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == System.Windows.Forms.DialogResult.No)                e.Cancel = true;        }        private void 退出ToolStripMenuItem_Click(object sender, EventArgs e)        {            if (MessageBox.Show("是否确认退出程序?", "退出", MessageBoxButtons.OKCancel, MessageBoxIcon.Question) == DialogResult.OK)            {                // 关闭所有的线程                this.Dispose();                this.Close();            }        }        private void 显示ToolStripMenuItem_Click(object sender, EventArgs e)        {            if (this.WindowState == FormWindowState.Minimized)            {                this.Show();                this.ShowInTaskbar = true;                this.WindowState = FormWindowState.Normal;                notifyIcon.Visible = false;            }        }

参考:http://www.cnblogs.com/nangong/p/997995dc3743b60baac30899c3d82ef7.html

http://www.cnblogs.com/_zjl/archive/2011/05/16/2047918.html             WinForm中实现最小化到系统托盘

http://www.cnblogs.com/xugang/archive/2007/12/19/1006005.html      C#实现WinForm窗口最小化到系统托盘

 

你可能感兴趣的文章
二分搜索及其扩展
查看>>
缓存篇(Cache)~大话开篇
查看>>
看SQL SERVER数据库当前连接数
查看>>
LintCode: Restore IP Address
查看>>
LintCode: Valid Parentheses
查看>>
事件引入和本质
查看>>
apiCloud事件发送与监听
查看>>
成功是什么?
查看>>
Ext.form 表单为什么第二次就不正常显示
查看>>
SQL Server Collation介绍及其变更对数据的影响
查看>>
CSS魔法堂:重新认识Box Model、IFC、BFC和Collapsing margins
查看>>
Codeforces Round #411 (Div. 2)(A,B,C,D 四水题)
查看>>
Android 程序申请权限小知识点
查看>>
惑不惑
查看>>
chrome,opera..通过file协议浏览html代码时,发送的ajax请求本地文件,会报跨域错误...
查看>>
python+soket实现UDP协议的客户/服务端中文聊天程序
查看>>
PHP 高效分布代码转的
查看>>
微信小程序开发视频教程新鲜出炉
查看>>
查找表中的重复行
查看>>
全球晶圆产能排名:台积电仅次三星
查看>>