Won't Fix
Last Updated: 17 May 2016 14:02 by ADMIN
ADMIN
Geri
Created on: 26 Mar 2015 12:38
Category: Docking
Type: Bug Report
1
NullReferenceException when dragging item with DragDropManager from RadPane header template

		
1 comment
ADMIN
Kalin
Posted on: 17 May 2016 14:02
Hi,

In order to achieve the desired scenario you would need to handle the MouseLeftButtonDown event of the element you need to drag:

private void myControl_MouseLeftButtonDown(object sender, MouseButtonEventArgs e)
{
    e.Handled = true;
}

Regards,
Kalin