Rangel
Rangel

Reputation: 2683

Application Navigation Framework (SL) with MVVM

how i can use Application Navigation Framework (SL) with MVVM, I'm use MVVM Light Toolkit..

Thanks.

Upvotes: 0

Views: 847

Answers (1)

Bryant
Bryant

Reputation: 8670

There isn't anything special about using the Application Navigation Framework with MVVM. You would just create your standard navigation application in Silverlight and create your views. The Views would need to be tied to the ViewModel in one of the various ways out there such as setting the DataContext of the view to an instance of the VM in the xaml. The navigation framework just loads the views into the frame, the rest of it is just standard MVVM and no different from a standard Silverlight application.

Upvotes: 2

Related Questions