private void Comments_DragEnter(object sender, DragEventArgs e) { // Accept drops directly into comments only if not editing if (!disable_scrolling) { if (CommentEdit.Visible) e.Effect = DragDropEffects.Move; } }