Page Index Toggle Pages: 1 Send TopicPrint
Normal Topic Can I move control points after pressing Ctrl? (Read 33 times)
nullable
Full Member
***
Offline


I Love MindFusion!

Posts: 124
Joined: Aug 25th, 2022
Can I move control points after pressing Ctrl?
Apr 1st, 2025 at 12:22pm
Print Post  
Hello, MindFusion team. I need to implement some custom behavior when I press Crtl and move a control point by its handle. The thing is, now I can only start moving a handle and only then press Ctrl for the custom logic, because if I press the button before moving a handle, moving a control point is disabled.
What can I do to allow moving handles when pressing Ctrl?
  
Back to top
 
IP Logged
 
Slavcho
YaBB Moderator
*****
Offline


tech.support

Posts: 3364
Joined: Oct 19th, 2005
Re: Can I move control points after pressing Ctrl?
Reply #1 - Apr 1st, 2025 at 2:24pm
Print Post  
Hi,

Code
Select All
diagramView.ModifierKeyActions.Control = ModifierKeyAction.None; 



and to restore selection lasso drawing, return this from your behavior class when not dragging a handle:

Code
Select All
new InteractionState(
    Diagram.Selection, NodeAdjustmentHandle.Move, Action.Create); 



Regards,
Slavcho
Mindfusion
  
Back to top
 
IP Logged
 
Page Index Toggle Pages: 1
Send TopicPrint