2

I am developing a SilverLight Project using SilverLight BusinessApplication Template RIA services.I want to navigate from one xaml page to another xaml page on the click of a Button that is placed on the first Xaml Page. i don't want to use Hyperlink button.

Any Suggestions...

rishi kasnia
  • 21
  • 1
  • 2
  • possible duplicate of [C# Silverlight 3 - Programmatically Navigate Between Pages?](http://stackoverflow.com/questions/1498071/c-silverlight-3-programmatically-navigate-between-pages) – agf Sep 16 '11 at 19:55

1 Answers1

2

Duplicate here:

Put this inside the event handler of the button:

this.NavigationService.Navigate(new Uri("nextpage.xaml", UriKind.Relative));
Community
  • 1
  • 1
Goober
  • 13,146
  • 50
  • 126
  • 195