Is it possible to set up custom styling for the SfSegmentedControl in Styles.xaml, to ensure that all controls used in my application are using the custom styling?
I was trying something like this, but I am not getting it right
<Style TargetType="SfButtons:SfSegmentedControl">
<Setter Property="TextStyle.TextColor" Value="{AppThemeBinding Light={StaticResource Red}, Dark={StaticResource Red}}" />
</Style>