Hello Telerik
A double click on any node, edge, or text content of my Diagram display the underlying object type (c.f. attached image)
I succeeded to prevent this for the nodes, adding the following property to the Diagram in XAML:
ShapeDoubleClicked=
"diagram_ShapeDoubleClicked"
And in code-behind:
private
void
diagram_ShapeDoubleClicked(
object
sender, Telerik.Windows.Controls.Diagrams.ShapeRoutedEventArgs e)
{
e.Handled =
true
;
}
However I would like to disable this behavior for anything on the Diagram.
I did try the same idea with the MouseDoubleClick event, but it didn't change anything: edges and texts still displays object types...
Is there a solution to this?
Thanks for your help,
Sylvain