CodeTV.PanelChannel.treeViewChannel_QueryContinueDrag C# (CSharp) Method

treeViewChannel_QueryContinueDrag() private method

private treeViewChannel_QueryContinueDrag ( object sender, System.Windows.Forms.QueryContinueDragEventArgs e ) : void
sender object
e System.Windows.Forms.QueryContinueDragEventArgs
return void
        private void treeViewChannel_QueryContinueDrag(object sender, QueryContinueDragEventArgs e)
        {
            if (e.EscapePressed)
            {
                // Reset the drag rectangle when the mouse button is raised.
                this.dragBoxFromMouseDown = Rectangle.Empty;

                e.Action = DragAction.Cancel;
            }
        }