摘要: 在窗体的初始化的时候加上 “ this.ControlBox = false;”。public Form1() { InitializeComponent(); this.ControlBox = false; // 设置不出现关闭按钮 } 让这个红色的关闭按钮 执行其他操作 可以这样写protected override void WndProc(ref Message m) { const int WM_SYSCOMMAND = 0x0112; const int SC_CLOSE = 0xF060; if (m.Msg == WM_SYSCOMMAND && (int)m 阅读全文
posted @ 2011-04-13 16:25 jack85 阅读(1079) 评论(0) 推荐(1)