This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class Locator { | |
| public const string HomePage = "HomePage"; | |
| public const string SecondPage = "SecondPage"; | |
| static Locator() { | |
| ServiceLocator.SetLocatorProvider(() => SimpleIoc.Default); | |
| var navigation = new NavigationService(); | |
| navigation.Configure(Locator.HomePage, typeof(HomePage)); | |
| navigation.Configure(Locator.SecondPage, typeof(SecondPage)); | |
| SimpleIoc.Default.Register<HomePageViewModel>(); |
NewerOlder