public XNavigationMasterDetailNavigator(XFrame rootFrame, MasterDetailPage page, IViewResolver viewResolver) { _rootFrame = rootFrame; _xNavigation = rootFrame.Navigation; _container = rootFrame.Container; _rootNavigationPage = page; _viewResolver = viewResolver; _configure(); }
public XNavigationPageNavigator(ILifetimeScope scope, XFrame rootFrame, NavigationPage page, IViewResolver viewResolver) { _scope = scope; _rootFrame = rootFrame; _xNavigation = rootFrame.Navigation; _container = rootFrame.Container; _rootNavigationPage = page; _viewResolver = viewResolver; _configure(); }
public XUWPFrameNavigator(ILifetimeScope scope, XFrame rootFrame, Frame rootElement, IUWPViewResolver viewResolver, Type rootPageType) { _scope = scope; _rootFrame = rootFrame; _rootElement = rootElement; _xNavigation = rootFrame.Navigation; _container = rootFrame.Container; _viewResolver = viewResolver; _configure(rootPageType); }
protected XFrame( ILifetimeScope c, ILoadStatusService systemTrayService, IOrientationService orientationService, ILocalisationService localisationService, IXNavigation xNavigationService, IDispatcher dispatcher) { _loadStatusService = systemTrayService; _orientationService = orientationService; _localisationService = localisationService; _navigation = xNavigationService; Dispatcher = dispatcher; Container = c; Id = Guid.NewGuid(); }
public XRootFrame(ILifetimeScope c, ILoadStatusService systemTrayService, IOrientationService orientationService, ILocalisationService localisationService, IXNavigation xNavigationService, IDispatcher dispatcher) : base(c, systemTrayService, orientationService, localisationService, xNavigationService, dispatcher) { }