ComponentFactory.Krypton.Toolkit.ButtonController.OnDragMove C# (CSharp) Method

OnDragMove() protected method

Raises the DragMove event.
protected OnDragMove ( Point mousePt ) : void
mousePt Point Mouse point at time of event.
return void
        protected virtual void OnDragMove(Point mousePt)
        {
            if (DragMove != null)
            {
                // Convert point from client to screen coordinates
                mousePt = _target.OwningControl.PointToScreen(mousePt);
                DragMove(this, new PointEventArgs(mousePt));
            }
        }