BrightIdeasSoftware.ObjectListView.OnMouseDown C# (CSharp) Method

OnMouseDown() protected method

We need the click count in the mouse up event, but that is always 1. So we have to remember the click count from the preceding mouse down event.
protected OnMouseDown ( MouseEventArgs e ) : void
e MouseEventArgs
return void
        protected override void OnMouseDown(MouseEventArgs e)
        {
            this.lastMouseDownClickCount = e.Clicks;
            base.OnMouseDown(e);
        }
ObjectListView