AdvancedPageDragAndDrop.PageDragTreeView.PageDragQuit C# (CSharp) Méthode

PageDragQuit() private méthode

private PageDragQuit ( ) : void
Résultat 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;
            }
        }