tabbedpage

Xamarin Forms Disable swipe between pages in TabbedPage

泄露秘密 提交于 2019-11-30 03:19:09
问题 Is there a way to disable the swiping between TabbedPage on Android in Xamarin Forms? XAML: <TabbedPage xmlns="http://xamarin.com/schemas/2014/forms" xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" x:Class="App.MainTabbedPage"> </TabbedPage> C#: using Xamarin.Forms; using Xamarin.Forms.Xaml; namespace App { [XamlCompilation(XamlCompilationOptions.Compile)] public partial class MainTabbedPage : TabbedPage { public MainTabbedPage () { InitializeComponent(); Children.Add(new PageOne());