Click here to Skip to main content
15,881,139 members
Please Sign up or sign in to vote.
5.00/5 (1 vote)
See more:
Hi,
I have used MVVM model in silverlight application.
In my login control I have bind LoginCommand to my button.
C#
Command="{Binding LoginCommand}"

The authentication logic is written in ViewModel Class file. After authentication i want to redirect this page to Main page. I don't know how to do it.

I have used following code:
C#
System.Windows.Navigation.NavigationService obj = new System.Windows.Navigation.NavigationService();

obj.Navigate(new Uri("/Home",UriKind.Relative));

But its giving error
System.Windows.Navigation.NavigationService has no constructors defined.

Please let me know if you have any solution.
Thanks
Posted
Updated 11-Oct-10 3:58am
v2

1 solution

If you hard-code the entire URL to the place you want to go, does it work?

If so, you can get the url to the current silverlight page and parse/modify it appropriately
 
Share this answer
 

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