protected override void OnStartup(StartupEventArgs e) { base.OnStartup(e); ShellCore.InitializeContainer(); ConfigurePlatform(); shellCore.Configure(); shellCore.Initialize(); }
public ShellApplication() { shellViews = new Dictionary <string, Page>(); shellCore = Activator.CreateInstance <T>(); shellCore.Shells.CollectionChanged += Shells_CollectionChanged; shellCore.PropertyChanged += ShellCore_PropertyChanged; ConfigurePlatform(); shellCore.Configure(); }