Hi,
I upgraded from version 2012.3.1129.40 to 2013.3.1204.40.
With this new version I didn't find how to prevent from removing a node after drag & drop.
In the older version I was able to do it with:
With the new version, I'm using your recommendations: I use the DragDropManager class only, I set the DragDropExecutionMode to New but the PreviewDragEnded handler is not called anymore and the event PreviewDragEnded is marked as deprecated.
What is the best way to do this ?
Thanks,
I upgraded from version 2012.3.1129.40 to 2013.3.1204.40.
With this new version I didn't find how to prevent from removing a node after drag & drop.
In the older version I was able to do it with:
public
MyView()
{
InitializeComponent();
this
.m_cellTreeView.PreviewDragEnded +=
this
.OnPreviewDragEnded;
}
private
void
OnPreviewDragEnded(
object
sender, RadTreeViewDragEndedEventArgs e)
{
e.Handled =
true
;
}
With the new version, I'm using your recommendations: I use the DragDropManager class only, I set the DragDropExecutionMode to New but the PreviewDragEnded handler is not called anymore and the event PreviewDragEnded is marked as deprecated.
What is the best way to do this ?
Thanks,