Completed
Last Updated: 02 Apr 2015 09:47 by ADMIN
ADMIN
Dess | Tech Support Engineer, Principal
Created on: 16 Mar 2015 14:03
Category: Diagram, DiagramRibbonBar, DiagramToolBox
Type: Bug Report
1
FIX. RadDiagram - ShapeClicked and ShapeDoubleClicked events do not fire
Workaround:
 Private Sub RadDiagram1_MouseDoubleClick(sender As Object, e As MouseEventArgs)
        If e.Clicks = 2 Then
            Dim shape As RadDiagramShape = Me.RadDiagram1.DiagramElement.ElementTree.GetElementAtPoint(e.Location).FindAncestor(Of RadDiagramShape)()
            If shape IsNot Nothing Then
                'ToDo
            End If
        End If
    End Sub
0 comments