Hi,
When I draw connectors in the SFDiagram the DragState.Complete state is no longer firing when a connection is drawn on the diagram.
This I use code to monitor the drawn connections is:
(diagram.Info as IGraphInfo).ObjectDrawn += ClassDiagramDesigner_ObjectDrawn;
private void ClassDiagramDesigner_ObjectDrawn(object sender, ObjectDrawnEventArgs args)
{
Debug.WriteLine("DragState: "+args.State);
if (args.State == DragState.Completed)
When I upgraded to the latest version of syncfusion dlls)16.2.0.50) via Nuget the DragState.Complete has stopped been created.
I have attached a video of the issue.
In the video, you can see the following
You can see the connection been drawn.
The DragState been set to Dragging (in the output window)
At the end, the connection is created and drawn on the diagram.
But the DragState is NEVER set to Completed.
For some reason with the latest DLLs, the DragState.Complete has stopped been sent.
Any ideas?
Thanks
Attachment:
DragDropSample_9ff2fd80.zip