Open GoogleCodeExporter opened 9 years ago
[deleted comment]
Drag operation should not start if e.ClickCount != 1...
Correction:
static void DragSource_PreviewMouseLeftButtonDown(object sender, MouseButtonEventArgs e)
{
// Ignore the click if clickCount != 1 or the user has clicked on a scrollbar.
if (e.ClickCount != 1 || HitTestScrollBar(sender, e))
{
m_DragInfo = null;
return;
}
.......
Original comment by sandrogo...@gmail.com
on 4 Jul 2012 at 2:52
hi
added this fix in current source https://github.com/punker76/gong-wpf-dragdrop
the nuget package 0.1.3.4 includes this fix
jan
Original comment by punkera...@gmail.com
on 16 Feb 2013 at 10:29
Original issue reported on code.google.com by
sandrogo...@gmail.com
on 12 Apr 2012 at 2:28