예제 #1
0
파일: App.xaml.cs 프로젝트: umnug/utos-app
        public App()
        {
            current = this;
            InitializeComponent();
            ViewModelBase.Init();
            // The root page of your application
            switch (Device.OS)
            {
            case TargetPlatform.Android:
                MainPage = new RootPageAndroid();
                break;

            case TargetPlatform.iOS:
                MainPage = new EvolveNavigationPage(new RootPageiOS());
                break;

            case TargetPlatform.Windows:
            case TargetPlatform.WinPhone:
                MainPage = new RootPageWindows();
                break;

            default:
                throw new NotImplementedException();
            }
        }
예제 #2
0
        public MenuPage(RootPageAndroid root)
        {
            this.root = root;
            InitializeComponent();

            NavView.NavigationItemSelected += (sender, e) =>
            {
                this.root.IsPresented = false;
                Device.StartTimer(TimeSpan.FromMilliseconds(300), () =>
                {
                    Device.BeginInvokeOnMainThread(async() =>
                    {
                        await this.root.NavigateAsync(e.Index);
                    });
                    return(false);
                });
            };
        }