New to Telerik UI for WinForms? Download free 30-day trial

Enabling Drag and Drop with MultiSelect in RadTreeView

Environment

Product Version
2024.2.514 RadTreeView for WinForms

Description

In applications using RadTreeView with multi-selection enabled, implementing drag and drop functionality while preserving the selection state can present challenges. This KB article addresses how to implement drag and drop for multiple selected nodes in RadTreeView to external control, while preserving the selected items in drag-drop operation

This KB article also answers the following questions:

  • How can I drag and drop multiple nodes in RadTreeView?
  • How do I maintain node selection during drag and drop in RadTreeView?
  • How to ensure DragEnter and DragDrop events trigger correctly in RadTreeView with multi-selection?

Solution

To enable drag and drop functionality for multiple selected nodes in RadTreeView while maintaining the selection, follow these steps:

  1. Set MultiSelect to true and AllowDragDrop to true on RadTreeView.
  2. Enable drag and drop on the target control (e.g., RadTextBox) by setting AllowDrop to true.
  3. Utilize the MouseDown and MouseMove events of RadTreeView to initiate the drag and drop operation.
  4. In the DragDrop and DragEnter event handlers of the target control, implement logic to process the dropped data.

Below is the implementation in C#:

using System;
using System.Drawing;
using System.Windows.Forms;
using Telerik.WinControls.UI;

namespace TelerikWinFormsApp9
{
    public partial class RadForm1 : RadForm
    {
        private Point mouseDownPosition;

        public RadForm1()
        {
            InitializeComponent();

            radTreeView1.MultiSelect = true;
            radTreeView1.AllowDragDrop = true;

            radTextBox1.AllowDrop = true;
            radTextBox1.TextBoxElement.AllowDrop = true;

            radTreeView1.MouseDown += RadTreeView1_MouseDown;
            radTreeView1.MouseMove += RadTreeView1_MouseMove;

            radTextBox1.DragEnter += RadTextBox1_DragEnter;
            radTextBox1.DragDrop += RadTextBox1_DragDrop;
        }

        private void RadTextBox1_DragDrop(object sender, DragEventArgs e)
        {
            var textBox = sender as RadTextBox;
            var draggedText = e.Data.GetData(typeof(string)).ToString();
            textBox.Text = draggedText;
        }

        private void RadTextBox1_DragEnter(object sender, DragEventArgs e)
        {
            e.Effect = DragDropEffects.Copy;
        }

        private void RadTreeView1_MouseMove(object sender, MouseEventArgs e)
        {
            if (e.Button != MouseButtons.Left)
            {
                return;
            }

            if (ShouldBeginDrag(mouseDownPosition, e.Location))
            {
                var item = radTreeView1.ElementTree.GetElementAtPoint(e.Location);
                if (item != null && item is TreeNodeElement)
                {
                    var node = ((TreeNodeElement)item).Data;
                    var nodes = radTreeView1.SelectedNodes;
                    (sender as RadTreeView).DoDragDrop(node.Text, DragDropEffects.Copy);
                }
            }
        }

        private bool ShouldBeginDrag(Point current, Point capture)
        {
            var dragSize = SystemInformation.DragSize;
            var dragRect = new Rectangle(capture.X - dragSize.Width / 2, capture.Y - dragSize.Height / 2, dragSize.Width, dragSize.Height);
            return !dragRect.Contains(current);
        }

        private void RadTreeView1_MouseDown(object sender, MouseEventArgs e)
        {
            mouseDownPosition = e.Location;
            radTreeView1.TreeViewElement.DragDropService.Stop(false);
        }
    }
}

This solution enables the drag and drop of multiple selected nodes from RadTreeView to another control (e.g., RadTextBox), with the DragEnter and DragDrop events firing as expected.

Notes

  • Adjust the logic within the DragDrop event handler as needed to fit your specific requirements.
  • Ensure that both the source (RadTreeView) and target controls have their respective properties and event handlers correctly configured to support drag and drop functionality.