KB Article A372
Visible to All Users

How to change XtraTreeList drag-and-drop icons

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);
Comments (2)

    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?

    DevExpress Support Team 11 years ago

      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.

      Disclaimer: The information provided on DevExpress.com and affiliated web properties (including the DevExpress Support Center) is provided "as is" without warranty of any kind. Developer Express Inc disclaims all warranties, either express or implied, including the warranties of merchantability and fitness for a particular purpose. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.

      Confidential Information: Developer Express Inc does not wish to receive, will not act to procure, nor will it solicit, confidential or proprietary materials and information from you through the DevExpress Support Center or its web properties. Any and all materials or information divulged during chats, email communications, online discussions, Support Center tickets, or made available to Developer Express Inc in any manner will be deemed NOT to be confidential by Developer Express Inc. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.