rishi kasnia
rishi kasnia

Reputation: 21

how to navigate on the button click

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...

Upvotes: 2

Views: 3059

Answers (1)

Goober
Goober

Reputation: 13506

Duplicate here:

Put this inside the event handler of the button:

this.NavigationService.Navigate(new Uri("nextpage.xaml", UriKind.Relative));

Upvotes: 2

Related Questions