C# WndProc的使用方法示例

发布时间:2020-10-29编辑:脚本学堂
本文分享一例c#使用WndProc的小例子,供学习下WndProc的朋友作个参考,希望对大家有一定的帮助。

本节主要内容:
学习C# WndProc的使用方法

例子:
 

复制代码 代码示例:

WndProc(ref Message m)
protected override void WndProc(ref Message m)
{
    const int WM_SYSCOMMAND = 0x0112;
    const int SC_CLOSE = 0xF060;
    if (m.Msg == WM_SYSCOMMAND && (int) m.WParam == SC_CLOSE)
    {
        // 屏蔽传入的消息事件
        this.WindowState = FormWindowState.Minimized;
        return;
     } // www.jb200.com
    base.WndProc(ref m);
}

protected override void WndProc(ref    Message m)
{
     const int WM_SYSCOMMAND = 0x0112;
     const int SC_CLOSE = 0xF060;
     const int SC_MINIMIZE = 0xF020;
     if (m.Msg == WM_SYSCOMMAND && ((int)m.WParam == SC_MINIMIZE || (int)m.WParam == SC_CLOSE))
     {
         //最小化到系统栏
         this.Hide();
         return;
     }
     base.WndProc(ref    m);
}