MindFusion.Wpf Pack Programmer's Guide
DiagramBase.DoubleClicked Event
See Also
 





Raised when the user double-clicks the diagram at a point where no items are located.

Namespace: MindFusion.Diagramming.Wpf
Assembly: MindFusion.Diagramming.Wpf

 Syntax

C#  Copy Code

public event EventHandler<DiagramEventArgs> DoubleClicked

Visual Basic  Copy Code

Public Event DoubleClicked As EventHandler(Of DiagramEventArgs)

 Event Data

DoubleClicked event handlers receive an argument of type DiagramEventArgs. The following DiagramEventArgs members provide information relevant to the event:

Member name

Description

MouseButton

The mouse button that has been pressed by the user.

MousePosition

A Point specifying the mouse cursor position.

 Remarks

This event is raised only if the user double-clicks an unoccupied point of the diagram. If the user double-clicks a diagram item, one of the following events is raised: NodeDoubleClicked, CellDoubleClicked or LinkDoubleClicked.

 See Also

DiagramBase Members
DiagramBase Class
MindFusion.Diagramming.Wpf Namespace
ActionRedone Event
Clicked Event