AdvancedPageDragAndDrop.PageDragTreeView.PageDragQuit C# (CSharp) 메소드

PageDragQuit() 개인적인 메소드

private PageDragQuit ( ) : void
리턴 void
        private void PageDragQuit()
        {
            if (DragPageNotify != null)
            {
                DragPageNotify.PageDragQuit(this);

                // Did not transfer the page to the target, so dispose it
                _dragPage.Dispose();
                _dragPage = null;

                // No longer dragging
                _dragging = false;
                Capture = false;
            }
        }