Example #1
0
 private void ItemMouseDown(object sender, MouseEventArgs e)
 {
     DragDropWindowShow();
     Visibility = Visibility.Collapsed;
     DragDrop.DoDragDrop(this, this, DragDropEffects.All);
     Visibility = Visibility.Visible;
     kanbanBoard.DragDropWindowRemove();
     kanbanBoard.ItemPreviewRemove();
 }