Contextmenu and multi selection

Hi all.

On my GoView I have two types of nodes (each derive from a different GoNode). Each of the nodes has its own context menu implemented by overriding the GetContextMenu method.
I'd like to enable multi-selection in the view with its own contextmenu.
I set view.ContextClickSingleSelection = false , which keeps the selection when right clicking , but I get the context menu of the closest item.
How can I set a special context menu for a multiple selection ?
Thanks
Amit

You should be able to handle the GoView.ObjectContextClicked event and set the menu to what you want. The WebWalker sample shows how to do this.

It's not clear if you also want to handle context-click on background this way too...