如何在iOS的Xamarin中禁用手势?

时间:2018-09-24 07:06:48

标签: ios xaml xamarin

我只想在一页上禁用向后滑动手势(因为它们与UrhoSharp场景冲突),但我不想使用模式页面。任何帮助将不胜感激。

1 个答案:

答案 0 :(得分:1)

通过添加此代码已解决

if (Xamarin.Forms.Application.Current.MainPage is MasterDetailPage masterDetailPage)
{
    masterDetailPage.IsGestureEnabled = false;
}

else if (Xamarin.Forms.Application.Current.MainPage is NavigationPage navigationPage && navigationPage.CurrentPage is MasterDetailPage nestedMasterDetail)
{
   nestedMasterDetail.IsGestureEnabled = false;
}