R – How to redirect to a different page clicking on an Image in silverlight 3.0

silverlightsilverlight-3.0

I have a slide show of some images in my silverlight application.

When user clicks on any Image I want want to redirect to a different page.

How to implement this.

Please help.

Best Answer

From Silverlight you can catch/handle the MouseLeftButtonUp event and do

HtmlPage.Window.Navigate("http://www.example.com");
Related Topic