BrightIdeasSoftware.ObjectListView.OnMouseDown C# (CSharp) 메소드

OnMouseDown() 보호된 메소드

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
리턴 void
        protected override void OnMouseDown(MouseEventArgs e)
        {
            this.lastMouseDownClickCount = e.Clicks;
            base.OnMouseDown(e);
        }
ObjectListView