We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date
close icon

How to manage keyboard input

When a node is selected on the diagram, if the user presses the delete key the node is removed.

I have tried using the keydown event and setting e.handled = true when the keycode = delete, but that does not have any effect.

Has anyone any ideas how I might achieve this.

2 Replies

DO Declan O'Loughlin November 4, 2009 12:25 PM UTC

Sorry ignore this - it should be in the winforms section


DM Dinesh M Syncfusion Team November 9, 2009 09:45 AM UTC

Hi Declan,

You can use the following code to prevent a node from being deleted.

AddHandler diagram.Model.EventSink.NodeCollectionChanging, AddressOf EventSink_NodeCollectionChanging

Private Sub EventSink_NodeCollectionChanging(ByVal evtArg As CollectionExEventArgs)
If (evtArg.ChangeType = CollectionExChangeType.Remove) Then
evtArg.Cancel = True
End If
End Sub

Regards,
Dinesh

Loader.
Live Chat Icon For mobile
Up arrow icon