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