标签:int col 事件 turn 判断 按钮 ted style code
protected override void WndProc(ref Message msg) { const int WM_SYSCOMMAND = 0x0112; const int SC_CLOSE = 0xF060; if (msg.Msg == WM_SYSCOMMAND && ((int)msg.WParam == SC_CLOSE)) { // 点击winform右上关闭按钮 // 加入想要的逻辑处理 MessageBox.Show("弹出Form3窗体"); Form3 form = new Form3(); form.Show(); //return;//阻止了窗体关闭 } base.WndProc(ref msg); }
WinForm中如何判断关闭事件来源于用户点击右上角的“关闭”按钮
标签:int col 事件 turn 判断 按钮 ted style code
原文地址:https://www.cnblogs.com/youmingkuang/p/11422451.html