Quantcast
Channel: Caliburn.Micro: Xaml Made Easy
Viewing all articles
Browse latest Browse all 1760

New Post: Use Caliburn Micro with the normal flow of application.

$
0
0
I use Caliburn for all my apps at present Desktop/Win App/Windows Phone, it does everything that I need... Can you explain your confusion?

windows phone navigation is done through INavigationService which is registered with the IoC automatically with a call to container.RegisterPhoneServices(); in the configure method of your bootstrapper.

then in your viewmodels' constructor you will have INavigationService navService



public class SomeViewModel{
private static INavigationService _navService;

public SomeViewModel(INavigationService navService){
   _navService = navService;
}
}

Viewing all articles
Browse latest Browse all 1760

Trending Articles