Hi,
I have an app with segmented control - it contains many items. My requirement is that I want to open a page from another page and select a specific item at SegmentedControl (by parameter at page constructor). Select item works fine, but not working AutoScrollSelectedItem property (segmented control does not scroll to position). But if I choose item (for example for picker or button) on the same page than AutoScroll works perfectly.
<buttons:SfSegmentedControl x:Name="sclist" VisibleSegmentsCount="3" Color="Transparent" BackgroundColor="Blue" AutoScrollSelectedItem="True" ScrollToPosition="Center" SelectionTextColor="White" SegmentHeight="35" FontColor="LightGray" HeightRequest="35" MinimumWidthRequest="60" SegmentPadding="0" BorderThickness="0" FontAttributes="Bold" MinimumHeightRequest="20" Margin="0" CornerRadius="0" DisplayMode="Text" VerticalOptions="FillAndExpand" HorizontalOptions="FillAndExpand" SelectionChanged="SegmentedControl_SelectionChanged" >
<buttons:SfSegmentedControl.SelectionIndicatorSettings>
<buttons:SelectionIndicatorSettings Position="Bottom" Color="Gray" StrokeThickness="4" >
</buttons:SelectionIndicatorSettings>
</buttons:SfSegmentedControl.SelectionIndicatorSettings>
</buttons:SfSegmentedControl>