ARCed.UI.SplitterBase.WndProc C# (CSharp) Method

WndProc() protected method

protected WndProc ( Message &m ) : void
m System.Windows.Forms.Message
return void
        protected override void WndProc(ref Message m)
        {
            // eat the WM_MOUSEACTIVATE message
            if (m.Msg == (int)Msgs.WM_MOUSEACTIVATE)
                return;

            base.WndProc(ref m);
        }