Click here to Skip to main content
15,894,106 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
How to Disable Microsoft Silverlight Installation Popup @ My page Loading.
Posted

Don't put silverlight controls on that page.
 
Share this answer
 
Hi there, In your Silverlight page put this line of code:

C#
LayoutRoot.MouseRightButtonDown += (s, e) => { e.Handled = true; }; //Disable the contextual menu 

Where LayoutRoot is your parent control (Grid on this case).

Best regards.
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900