This simple property tabView.SelectedIndex = 0; stopped working for me.
Could you confirm this is a known issue? or maybe I need to set up another property?
This is how I initialized my tabView:
tabView = new SfTabView(this.ApplicationContext)
{
VisibleHeaderCount = 3,
TabHeaderBackgroundColor = Color.LightGray,
TabHeight = 40,
EnableSwiping = false,
OverflowMode = OverflowMode.DropDown,
OverflowButtonSettings = new OverflowButtonSettings
{
BackgroundColor = Color.LightSlateGray,
DisplayMode = OverflowButtonDisplayMode.Text,
Title = "More...",
TitleFontColor = Color.Black
}
};
tabView.SelectionChanged += tabView_SelectionChanged;
Thank you!