chaosifier / TabView

TabView control for Xamarin.Forms.
MIT License
124 stars 32 forks source link

"'HeaderSelectionUnderlineWidthProperty' property not found" appears in log #44

Open felipechavez opened 4 years ago

felipechavez commented 4 years ago

The following errors appears in log everytime a page with tabs is opened:

[0:] Binding: 'HeaderSelectionUnderlineWidthProperty' property not found on 'Xam.Plugin.TabView.TabItem', target property: 'Xamarin.Forms.BoxView.HorizontalOptions' [0:] Binding: 'HeaderSelectionUnderlineWidthProperty' property not found on 'Xam.Plugin.TabView.TabItem', target property: 'Xamarin.Forms.BoxView.HorizontalOptions' [0:] Binding: 'HeaderSelectionUnderlineWidthProperty' property not found on 'Xam.Plugin.TabView.TabItem', target property: 'Xamarin.Forms.BoxView.HorizontalOptions' [0:] Binding: 'HeaderSelectionUnderlineWidthProperty' property not found on 'Xam.Plugin.TabView.TabItem', target property: 'Xamarin.Forms.BoxView.HorizontalOptions'

Setup My setup is as follows for three tabs: <tabView:TabViewControl x:Name="TabControl" HeaderBackgroundColor="{StaticResource WhiteColor}" HeaderSelectionUnderlineColor="{StaticResource BlueColor}" HeaderTabTextColor="Black" HeaderTabTextFontSize="15" HeaderSelectionUnderlineWidth="100" HorizontalOptions="FillAndExpand" VerticalOptions="FillAndExpand">

Thanks