Articles in this section
Category / Section

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

1 min 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

 

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