在 Xamarin.Forms 中,我需要创建一个弹出窗口,在弹出窗口中显示登录页面。
这是我使用 xlab 弹出控件的代码。
MainPage l = new MainPage();
Navigation.PushModalAsync(l);
PopupLayout popupLayout = new PopupLayout();
popupLayout.Content = l.Content;
ShowPopup(l);
MainPage
扩展ContentPage
,目前它在登录屏幕上工作正常,但我的要求是将其显示为弹出窗口。有人可以帮忙吗?或者有没有其他方法可以做到这一点?