Loading

摘要: //窗体最小化时候将窗体隐藏掉,同时让托盘控件显示 private void Form1_SizeChanged(object sender, EventArgs e) { if(this.WindowState == FormWindowState.Minimized) { this.Hide(); this.notifyIcon1.Visible = true; } } private v... 阅读全文
posted @ 2016-07-04 08:39 3WLineCode 阅读(338) 评论(0) 推荐(0) 编辑