Advanced Forum Search Results
-
Thanks for your help! As far as now, my app need not heavy animations, with these hacks, silverlight works fine for me.
-
Thanks for your reply, but my customers can not live without right mouse...
I have some more questions. I know that IE and Firefox can run xbap application, in which right click is just as simple as windows application. Why Silverlight doesn't use similar approach?
And why should the browser deal with rendering jobs when it deal with the ...
-
In Silverlight 2.0, it's quite easy to hide the default context menu when user right click in Silverlight app:
1. Set Windowless attribute to true in html or aspx
2. In C# code, add a line: HtmlPage.Document.AttachEvent("oncontextmenu", myHandler);
3. Implement myHandler to deal with right click event.
For details, please check ...