Description:
How to Change XtraTreeList Drag&Drop Icons
Answer:
The XtraTreeList displays an icon near a node during drag&drop which indicates the drop target. You may wish to use different icons for different drop effects such as copy and move. Please use the CalcNodeDragImageIndex event for this. You can try different values for the e.ImageIndex parameter to see different images. If e.ImageIndex is set to –1, no icon is displayed. To obtain a state of the Shift and Control keys, you should check a value of the Form.ModifierKeys property.
It is also possible to add your own icons to the TreeList's image list. This is accessible via the Painter.NodeDragImages member.
C#Image myNewImage = Image.FromFile("arrow.bmp");
treeList1.Painter.NodeDragImages.Images.Add(myNewImage);
This event only fires when a Node is about to be dragged. I would like to be able to change the icons based on the Drag Node AND the Drop Node in the DragOver event. Is this possible?
Hello,
I have created a separate TreeList - How to obtain a drag-and-drop icon during the DragOver event ticket related to this issue. Let's continue our discussion there.