Hi Ali,
I was able to see the issue that you have mentioned here. Could you please open a new DT incident with the subject of this forum? So that you can follow-up with that incident to get more details about the status of the issue.
Thank you for bringing this issue into our attention.
However you can work around the condition by setting the ActionCursor property of the current active tool within the DiagramViewerEventSink.ToolActivated() event method.
I have attached the sample image for your reference -
http://websamples.syncfusion.com/samples/Diagram.Windows/F61855/main.htmBelow is the sample code snippet that shows above information.
((DiagramViewerEventSink)diagram1.EventSink).ToolActivated += new ToolEventHandler(Form1_ToolActivated);
void Form1_ToolActivated(ToolEventArgs evtArgs)
{
if (evtArgs.Tool is SelectTool)
{
Tool tool = this.diagram1.Controller.ActiveTool;
tool.ActionCursor = Resources.Cursors.Connect;
}
if (evtArgs.Tool is MoveTool)
{
Tool tool = this.diagram1.Controller.ActiveTool;
tool.ActionCursor = Cursors.Hand;
}
}
Please let me know whether above details provided are helpful to you.
Thanks,
Meera.