Hi Marco,
Greetings from Syncfusion.
We have analyzed your query. You can disable the navigation of “TabItem in a SfTabView” by using TabItemTapped event of TabView and disable the EnableSwiping as like below code snippet.
XAML:
<tabView:SfTabView TabItemTapped="SfTabView_TabItemTapped" EnableSwiping="False" BackgroundColor="Aqua">
<tabView:SfTabItem " Title="Call">
<tabView:SfTabItem.Content >
<Grid BackgroundColor="Red" x:Name="AllContactsGrid" />
</tabView:SfTabItem.Content>
</tabView:SfTabItem>
</tabView:SfTabView> |
C#:
private void SfTabView_TabItemTapped(object sender, Syncfusion.XForms.TabView.TabItemTappedEventArgs e)
{
e.Cancel = true;
} |
You can also hide the “TabItem in a SfTabView” by setting IsVisble property of TabItem as like below code snippet.
<tabView:SfTabItem IsVisible="False" Title="Contacts">
<tabView:SfTabItem.Content>
<Grid BackgroundColor="Blue" x:Name="ContactsGrid" />
</tabView:SfTabItem.Content>
</tabView:SfTabItem> |
We have created sample based on your requirement, please download the sample from below location.
Please let us know if you have any other queries.
Regards,
Hemalatha M.