攔截雙擊標題欄、移動窗體的系統消息

protected override void WndProc(ref Message m)
        {
            //攔截雙擊標題欄、移動窗體的系統消息  
            if (m.Msg != 0xA3 && m.Msg != 0x0003 && m.WParam != (IntPtr)0xF012)
            {
                base.WndProc(ref m);
            }
        }

if 語句可替換成下面的十進制顯示html

if (m.Msg != 163 && m.Msg != 3 && m.WParam !=  (IntPtr)61548)ide

 

 

出處:https://zhidao.baidu.com/question/1116109957871462059.htmlspa

相關文章
相關標籤/搜索