We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date

Change Node Drag/Drop sensitivity

Hi, I''d like to change the sensitivity for initiating a diagram node drag/drop operation. Often it happens that when you double-click on a node on the diagram, the diagram attempts to initiate a drag/drop operation actually moving the node. Any help would be highly appreciated. TIA Kai Iske

1 Reply

AD Administrator Syncfusion Team August 19, 2004 06:39 PM UTC

Hi Kai You need to implement your own MoveTool. Refer to the Tools/MoveTool.cs file in the Essential Diagram Source. Refer to the node tracking code in the IMouseEventReceiver.MouseMove() in the lines below: // Track the selected nodes as they move: Here you could add code to change the sensitivity as per your requirements. (for eg, tracker.Move will be called only if say (ptDev.X - this.startingPoint.X)>2) Another issue currently is that there is no UnregisterTool method in the Controller, but the Diagram Team is going to add this method which will facilitate unregistering the default Tool and then registering your custom Tool. So currently you will have to use reflection to get hold of the private members of the Controller (mouseEventReceivers in this case). Regards Arun

Loader.
Live Chat Icon For mobile
Up arrow icon