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