How to restrict annotation editing by double-clicking the node or connector in WPF Diagram (SfDiagram)?
The Read-Only property in AnnotationEditorViewModel will not allow to get annotation edited in WPF Diagram (SfDiagram). The AnnotationChanged event will assist to decide on editing the annotation by double-clicking the node or itself (Annotation).
Refer to the code example to stop editing the annotation when double-clicking the node. But the annotation should get edited when double-clicking the annotation.
C#
(diagram.Info as IGraphInfo).AnnotationChanged += AnnotationChanged; //Here diagram is the instance of SfDiagram private void AnnotationChanged(object sender, ChangeEventArgs<object, AnnotationChangedEventArgs> args) { // Verify that the double-clicked item is Node if(args.Item is NodeViewModel) { // To Cancel Annotation editing args.Cancel = true; } }
Conclusion
I hope you enjoyed learning about how to restrict annotation editing by double-clicking the node or connector in WPF Diagram (SfDiagram).
You can refer to our WPF Diagram feature tour page to know about its other groundbreaking feature representations and documentation, and how to quickly get started for configuration specifications. You can also explore our WPF Diagram example to understand how to create and manipulate data.
For current customers, you can check out our components from the License and Downloads page. If you are new to Syncfusion, you can try our 30-day free trial to check out our other controls.
If you have any queries or require clarifications, please let us know in the comments section below. You can also contact us through our support forums, Direct-Trac, or feedback portal. We are always happy to assist you!