ComponentFactory.Krypton.Docking.DockingDragManager.DragMove C# (CSharp) Method

DragMove() public method

Occurs on dragging movement.
public DragMove ( Point screenPt ) : void
screenPt Point Latest screen point during dragging.
return void
        public override void DragMove(Point screenPt)
        {
            if (FloatingWindow != null)
            {
                _screenPt = screenPt;
                _moveTimer.Start();
            }

            base.DragMove(screenPt);
        }