码迷,mamicode.com
首页 > Windows程序 > 详细

WinForm中如何判断关闭事件来源于用户点击右上角的“关闭”按钮

时间:2019-08-28 10:38:44      阅读:93      评论:0      收藏:0      [点我收藏+]

标签: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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!