Xamarin Forms中的Navigation.InsertPageBefore方法出错

时间:2018-03-21 14:25:26

标签: xamarin xamarin.forms navigation

这是我的登录界面(到目前为止一切正常) enter image description here

该方法链接到ContentPage.ToolbarItems中带有图标的按钮

async void OnLogoutButtonClicked(object Sender, EventArgs e, Session session)
        {
            App.IsUserLoggedIn = false;
            if (session != null)
            {
                session.Dispose();
            }

            Navigation.InsertPageBefore(new LoginPage(), this);
            await Navigation.PopAsync();
        }

enter image description here

这是LoginPage的新实例...在圆圈中你注意到汉堡菜单,好像我的登录页面已成为一个主要细节页面......我尝试了不同的方法来回到那个LoginPage但它没有改变任何事情......我错在哪里?

enter image description here

0 个答案:

没有答案