Completed
Last Updated: 13 Mar 2024 08:17 by ADMIN
Release 6.8.0
Setting SelectedSegmentBackgroundColor property of the SegmentedControl does not take any effect.
Unplanned
Last Updated: 22 Feb 2023 12:00 by Aaron
Created by: Aaron
Comments: 0
Category: SegmentedControl
Type: Feature Request
0
Provide a way to set rounded corners on the outer buttons and to the complete segment control
Unplanned
Last Updated: 26 Aug 2022 10:02 by Stefano
Currently, there is no ItemTemplate for the SegmentedControl, therefore we need to use an IEnumerable<string>.

Please add support for ItemTemplate, or DisplayMemeberBinding property, so that we can bind to an IEnumerable<T>.
Completed
Last Updated: 22 Jun 2022 10:47 by ADMIN
Release 2.0.0
Created by: ward
Comments: 0
Category: SegmentedControl
Type: Bug Report
3

When setting IsEnabled to False, there is no change in the component.

Test

Use the following code, observe that the RadSegmentedControl is still enabled at runtime.

<telerikInput:RadSegmentedControl x:Name="segmentControlText"
                                  BackgroundColor="AliceBlue"
                                  IsEnabled="False"
                                  VerticalOptions="Start">
    <telerikInput:RadSegmentedControl.ItemsSource>
        <x:Array Type="{x:Type x:String}">
            <x:String>Popular</x:String>
            <x:String>Library</x:String>
            <x:String>Playlists</x:String>
            <x:String>Friends</x:String>
        </x:Array>
    </telerikInput:RadSegmentedControl.ItemsSource>
</telerikInput:RadSegmentedControl>

Unplanned
Last Updated: 20 Jun 2022 08:49 by Viral
Currently users can navigate through segments with Tab key on Windows - provide a way to go forward/backward through arrow keys as well.