Hi together,
when CenterButton is configured, I run into the error only on UWP, Android & IOS are running without error:
If I take the Centerbutton config out of the code, UWP is than working fine again
at Windows.UI.Xaml.DependencyObject.SetValue(DependencyProperty dp, Object value)
at Syncfusion.XForms.UWP.TabView.SfTabView.<UpdateTabViewProperties>d__118.MoveNext()
at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()
at System.Runtime.CompilerServices.AsyncMethodBuilderCore.<>c.<ThrowAsync>b__7_0(Object state)
at System.Threading.WinRTSynchronizationContextBase.Invoker.InvokeCore()
I use following Setup for the centerbutton:
<tabView:SfTabView x:Name="tabView" OverflowMode="CenterButton"
VisibleHeaderCount="2"
TabItemTapped="TabView_TabItemTapped"
SelectionChanged="Handle_SelectionChanged"
EnableSwiping="True"
IsScrollButtonEnabled="True"
TabHeaderPosition="Top"
DisplayMode="Image">
<tabView:SfTabView.CenterButtonSettings>
<tabView:CenterButtonSettings Height="64" Width="64"
Title="CenterButton" TitleFontColor="Green"
BackgroundColor="Transparent">
</tabView:CenterButtonSettings>
</tabView:SfTabView.CenterButtonSettings>
<tabView:SfTabView.CenterButtonView>
<Grid>
<Image Source="AnalyseBtn.png"
Aspect="AspectFill"
VerticalOptions="CenterAndExpand"
HorizontalOptions="CenterAndExpand">
<Image.GestureRecognizers>
<TapGestureRecognizer Tapped="TapGestureRecognizer_Tapped" />
</Image.GestureRecognizers>
</Image>
</Grid>
</tabView:SfTabView.CenterButtonView>
Thanks,
Markus