示例#1
0
        protected override void ConfigurePresentationFramework(PresentationFrameworkConfiguration module)
        {
            module.With.ShellFramework()
            .ConfigureDeepLinking <DeepLinkStateManager, DefaultHistoryCoordinator>()
            .RedirectViewNamespace("Fab.Client.Shell.Views");

            module.RegisterAllScreensWithSubjects(true)
            .Using(x => x.ViewLocator <DefaultViewLocator>())
            .Configured(x => x.AddNamespaceAlias("Fab.Client.Models", "Fab.Client.Shell.Views"));
        }
示例#2
0
        protected override void ConfigurePresentationFramework(PresentationFrameworkConfiguration module)
        {
            module.With.ShellFramework()
                .ConfigureDeepLinking<DeepLinkStateManager, DefaultHistoryCoordinator>()
                .RedirectViewNamespace("Caliburn.Silverlight.NavigationShell.Shell.Views");

            module
                .RegisterAllScreensWithSubjects(true)
                .Using(x => x.ViewLocator<DefaultViewLocator>())
                    .Configured(x =>{
                        x.AddNamespaceAlias("Caliburn.Silverlight.NavigationShell.Framework",
                                            "Caliburn.Silverlight.NavigationShell.Shell.Views");
                    });
        }
示例#3
0
 protected override void ConfigurePresentationFramework(PresentationFrameworkConfiguration module)
 {
     module.RegisterAllScreensWithSubjects();
     ExecuteBootsrapTasks();
 }
示例#4
0
 protected override void ConfigurePresentationFramework(PresentationFrameworkConfiguration module)
 {
     module.RegisterAllScreensWithSubjects();
     ExecuteBootsrapTasks();
 }