DevExpress TreeList 拖拽 到 XtraScrollableControl

1、 Both of them AllowDrag  to true

2、 TreeList OptionsBehavior.DragNodes property to true

3、XtraScrollableControl dragover  or dragEnter event add code : e.Effect = DragDropEffects.Move;

4  XtraScrollableControl dragdrop event :e.Data.GetData(typeof(DevExpress.XtraTreeList.Nodes.TreeListNode))

你可能感兴趣的:(DevExpress TreeList 拖拽 到 XtraScrollableControl)