2011年12月15日

C# Form 点击关闭按钮 如何隐藏

摘要: void FormClosing(object sender, FormClosingEventArgs e) { this.WindowState = FormWindowState.Minimized; e.Cancel = tru... 阅读全文

posted @ 2011-12-15 19:58 norsd 阅读(233) 评论(0) 推荐(0) 编辑

C# 窗体处理自定义消息

摘要: protected override void DefWndProc(ref Message msg) { if (msg.Msg == 123456) { label1.Text = strStatu... 阅读全文

posted @ 2011-12-15 14:50 norsd 阅读(252) 评论(0) 推荐(0) 编辑

导航