ARCed.UI.DockPane.SplitterControl.OnMouseDown C# (CSharp) Method

OnMouseDown() protected method

protected OnMouseDown ( MouseEventArgs e ) : void
e MouseEventArgs
return void
            protected override void OnMouseDown(MouseEventArgs e)
            {
                base.OnMouseDown(e);

                if (e.Button != MouseButtons.Left)
                    return;

                this.DockPane.DockPanel.BeginDrag(this, Parent.RectangleToScreen(Bounds));
            }