Posted 31 Jan 2017 Link to this post
Posted 01 Feb 2017 Link to this post
public
RadForm1()
{
InitializeComponent();
var ds =
this
.radDiagram1.ServiceLocator.GetService<IDraggingService>()
as
DraggingService;
ds.Dragging += Ds_Dragging;
ds.CompleteDragging += Ds_CompleteDragging;
}
private
void
Ds_CompleteDragging(
object
sender, PositionChangedEventArgs e)
Console.WriteLine(
"Droped at:"
+ e.NewPosition);
Ds_Dragging(
Console.WriteLine(e.NewPosition);