1

在 xamarin 表单中,具有主详细信息布局的 RootPage。我的任务是在用户成功登录后显示该页面。我正在使用 azure 移动服务进行登录。我花了更多时间来获得结果。我看到了其他一些解决方案,但这些解决方案没有按预期呈现主细节。最后我得到了解决方案。

这是 app.cs 中的代码

public App()
    {

     Client = new MobileServiceClient("your azure url", "your master key");
        LoadMainPage();

    } public void LoadMainPage()
    {
        if (Client.CurrentUser == null)
        {
            MainPage=new NavigationPage(new SplashPage());
        }
        else
        {
            MainPage = new RootView();;
        }


    }

在登录页面

 async void  OnLoginClicked(object sender, EventArgs args)
    {
        MobileServiceUser user;

        try
        {
            user = await DependencyService.Get<IMobileClient>().LoginAsync(MobileServiceAuthenticationProvider.Facebook);
            Application.Current.MainPage=new RootView();
            await Navigation.PopToRootAsync();

        }
        catch (InvalidOperationException ex)
        {
            if (ex.Message.Contains("Authentication was cancelled"))
            {
                //messageLabel.Text = "Authentication cancelled by the user";
            }
        }
        catch (Exception ex)
        {
          //  messageLabel.Text = "Authentication failed";
        }

    }
4

1 回答 1

5

您需要考虑进行导航,而不是更改这些路径的路线。在此处查看 Xamarin 导航文档:https ://developer.xamarin.com/guides/cross-platform/xamarin-forms/getting-started/introduction-to-xamarin-forms/#Navigation

await Navigation.PushModalAsync(new LoginPage());
于 2015-10-21T19:18:14.830 回答