Update Circle.xaml.cs (#1166)

This commit is contained in:
Andy (Steve) De George
2021-09-30 13:46:22 -07:00
committed by GitHub
parent 57b6ca1593
commit ba341c97c3
@@ -40,7 +40,7 @@ namespace DragDropWalkthrough
data.SetData("Double", circleUI.Height); data.SetData("Double", circleUI.Height);
data.SetData("Object", this); data.SetData("Object", this);
// Inititate the drag-and-drop operation. // Initiate the drag-and-drop operation.
DragDrop.DoDragDrop(this, data, DragDropEffects.Copy | DragDropEffects.Move); DragDrop.DoDragDrop(this, data, DragDropEffects.Copy | DragDropEffects.Move);
} }
} }