示例#1
0
        public App()
        {
            InitializeComponent();

            MainPage = new AppShellView();

            InitNavigation();
        }
示例#2
0
文件: App.xaml.cs 项目: kcrg/Barbital
        protected override void OnInitialized()
        {
            InitializeComponent();

            MainPage = new AppShellView();

            Routing.RegisterRoute("appshellview", typeof(AppShellView));
            Routing.RegisterRoute("playerview", typeof(PlayerView));
            Routing.RegisterRoute("newslist", typeof(NewsListView));
            Routing.RegisterRoute("appshellview/newslistview/newsitemview", typeof(NewsItemView));
        }