Articles in this section
Category / Section

How can I detect a right-click in a symbol?

2 mins read

How can I detect a right-click in a symbol?

We will be implementing left and right mouse button click events that can be handled from within the Model instance similar to the current Model.Click events. Currently you can work around this by using the Diagram's MouseUp event as demonstrated by the following code sample:

[C#]

private void diagram1_MouseUp(object sender, System.Windows.Forms.MouseEventArgs e) { if(e.Button == MouseButtons.Right) { foreach (INode curNode in this.diagram1.Controller.NodesHit) { if (curNode.GetType() == typeof(MySymbol)) MessageBox.Show(String.Concat("Right Click on: ", curNode.Name)); }
} }

[VB.NET]

Private  Sub diagram1_MouseUp(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) If e.Button = MouseButtons.Right Then Dim curNode As INode For Each curNode In Me.diagram1.Controller.NodesHit If curNode.GetType() = Type.GetType(MySymbol) Then MessageBox.Show(String.Concat("Right Click on: ", curNode.Name)) End If Next   End If End Sub

 

Conclusion

I hope you enjoyed learning about how to detect a right-click in a symbol.

You can refer to the WinForms Diagram feature tour page to learn about its other groundbreaking feature representations and documentation, and how to quickly get started for configuration specifications. You can also explore our WinForms 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 forumsDirect-Trac, or feedback portal. We are always happy to assist you!

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please  to leave a comment
Access denied
Access denied