ARCed.UI.DockPanel.DragHandlerBase.WndProc C# (CSharp) Method

WndProc() protected final method

protected final WndProc ( Message &m ) : void
m System.Windows.Forms.Message
return void
            protected override sealed void WndProc(ref Message m)
            {
                if (m.Msg == (int)Msgs.WM_CANCELMODE || m.Msg == (int)Msgs.WM_CAPTURECHANGED)
                    this.EndDrag(true);

                base.WndProc(ref m);
            }