/// <summary> /// Delete the source item at the end of a drag Move operation /// </summary> /// <param name="sender"></param> /// <param name="e"></param> private void OnDragDataDelete(object sender, DragDataDeleteArgs e) { Delete(sourcePathOfItemBeingDragged); }
protected void OnDrawCupboardDragDataDelete(object o, DragDataDeleteArgs args) { OrderCupboard.Cubes.Remove(CurrentDrag.cube); UpdateCubeComponents(); args.RetVal = true; }
private static void HandleSourceDragDataDelete (object sender, DragDataDeleteArgs args) { Console.WriteLine ("Delete the data!"); }
private static void HandleSourceDragDataDelete(object sender, DragDataDeleteArgs args) { Console.WriteLine("Delete the data!"); }