Ejemplo n.º 1
0
        public static NavigationServiceSingleton CreateNavigationService(Frame frame)
        {
            NavigationServiceSingleton x = GetNavigationService();

            x.frame = frame;
            return(x);
        }
Ejemplo n.º 2
0
 public static NavigationServiceSingleton GetNavigationService()
 {
     if (navigation == null)
     {
         navigation = new NavigationServiceSingleton();
     }
     return(navigation);
 }