vote up 5 vote down star
2

It seems like a common question on Google, but I couldn't find a satisfactory answer (unless the answer is 'no')

I would like to add menu items or show a custom menu when a user right-clicks on my Silverlight app.

The closest thing that I found catches the context menu in IE, but not in Firefox, and Chrome shows the context menu and then shows the custom event.

(The tutorial I mentioned was here http://silverlight.net/blogs/msnow/archive/2008/07/01/tip-of-the-day-14-how-to-right-click-on-a-silverlight-application.aspx)

flag

67% accept rate
if you use silverlight, you've already ruled out most of 'all browsers' – Javier May 21 at 20:32
1  
I suspect the OP meant "all browsers" to mean all browsers with more than 5% market share... – Nate Bross May 21 at 20:52
I meant all browsers that support Silverlight. I didn't think it would cause confusion and wanted to be brief. Title changed. – NetHawk May 22 at 12:32

4 Answers

vote up 2 vote down check

Hi,

Here you have an implementation but it's CTRL+Left click, then you get a context menu (about the text, sorry it's in spanish):

http://www.albloguera.es/?p=29

Another option, is the one pointed out do it via javascript, quite chunky solution, and not sure if now it's working in the current 2.0 version :-(.

Good Luck Braulio

link|flag
vote up 0 vote down

Hi andybritcliffe,

I'd be interested to know how you got rid of the default menu.

Did you manage to get the same behavior as in their demo? Did you have to call any special handlers in addition to using their custom controls?

Thanks

link|flag
vote up 2 vote down

There is no way to do this natively in Silverlight.

I believe that the Telerik control noted elsewhere uses the HtmlBridge to intercept the context click, then draw their own menu, however it does not appear to be working with Silverlight 2.0.40115 now, so maybe Microsoft have closed that gap.

Having no right click is a design decision based on security concerns, rather than a technical one. However I believe that the Microsoft team are considering allowing context menu's in future versions (perhaps even v3)

link|flag
I think its based on user experience concern too... No right click --> no hidden functionality – Peter Gfader Jul 1 at 9:38
vote up 0 vote down

I've come to the conclusion that it seems it is possible based on my use of Telerik's context menu which works fine on IE, Chrome and Firefox.

Check it out, http://demos.telerik.com/silverlight/#ContextMenu/FirstLook

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.