在 Xamarin 中从内容页面更改 MainPage
Change MainPage from Content page in Xamarin
我是 Xamarin 的新手。如何从 ContentPage 更改 MainPage。最初,当我的应用程序加载时,我的 MainPage 是 LoginPage,然后在我登录后,我希望我的母版页成为我的 MainPage。我怎么做?
目前我正在使用 navigation.Pushmodalasync 它可以工作,但我有一个不同的要求,我需要设置我的 MainPage。
await Navigation.PushModalAsync(new Master());
只需重新分配它
App.Current.MainPage = new MyPage();
我是 Xamarin 的新手。如何从 ContentPage 更改 MainPage。最初,当我的应用程序加载时,我的 MainPage 是 LoginPage,然后在我登录后,我希望我的母版页成为我的 MainPage。我怎么做? 目前我正在使用 navigation.Pushmodalasync 它可以工作,但我有一个不同的要求,我需要设置我的 MainPage。
await Navigation.PushModalAsync(new Master());
只需重新分配它
App.Current.MainPage = new MyPage();