Hi Tito,
Greetings from Syncfusion.
Currently we do not have any property to change the FontAttributes of Text during SelectionChange. But, we can achieve your requirement by changing the FontAttributes of the Title and FontIcon during SelectionChanged event.
void Handle_SelectionChanged(object sender, Syncfusion.XForms.TabView.SelectionChangedEventArgs e) { foreach (SfTabItem tabitem in (sender as SfTabView).Items) { if (tabitem.Title == e.Name) { tabitem.TitleFontAttributes = FontAttributes.Bold; tabitem.FontIconFontAttributes = FontAttributes.Bold; } else { tabitem.TitleFontAttributes = FontAttributes.None; tabitem.FontIconFontAttributes = FontAttributes.None; } } } |
We have prepared a sample for the same, please download it from the link given below.
Please let us know if you have any further clarification on this.
Regards,
Dhanasekar