I'm using Telerik UI for .NET MAUI v. 5.01 and when I set the property IsContentSwipingEnabled on my RadTabView control the compiler throws the error 'No property, BindableProperty, or event found for "IsContentSwipingEnabled", or mismatching type between value and property.'.
I'm using the swipe for another purpose within each tab and don't want the default behavior of the control to interfere.
<telerik:RadTabView x:Name="tabView"
AbsoluteLayout.LayoutFlags="All"
AbsoluteLayout.LayoutBounds="0,0,1,1"
AutomationId="tabView"
HorizontalOptions="FillAndExpand"
VerticalOptions="FillAndExpand"
IsContentSwipingEnabled="False" >
... several tabs here.
</telerik:RadTabView>