xamarin Rg.插件.弹出过时的方法

vu8f3i0k  于 2023-02-14  发布在  其他
关注(0)|答案(1)|浏览(102)

使用这行代码PopupNavigation.PushAsync(new myPopupPage());会给我以下警告:
警告CS0618“弹出导航.PushAsync(弹出页面,bool)”已过时:'您应该使用PopupNavigation.Instance中的IPopupNavigation示例。请参阅更多信息:https://github.com/rotorgames/Rg.Plugins.Popup/wiki/Migration-from-v1.0.x-to-v1.1.x'
使用这行代码await PopupNavigation.PopAsync(true);可以得到类似的结果:
警告CS0618“弹出导航.PopAsync(bool)”已过时:'您应该使用PopupNavigation.Instance中的IPopupNavigation示例。请参阅更多信息:https://github.com/rotorgames/Rg.Plugins.Popup/wiki/Migration-from-v1.0.x-to-v1.1.x'
新的对等物是什么?

vc9ivgsu

vc9ivgsu1#

照医生说的做

await PopupNavigation.Instance.PushAsync(…);

相关问题