The FontSize of the Spinner ItemStyle changes when scrolling through the date/time and the Date/Time/TimeSpan and DateTime Pickers have SpinnerStyle
And the code used:
<ContentPage.Resources>
<ResourceDictionary>
<Style x:Key="PopupSpinnerStyle" TargetType="telerikDataControls:RadSpinner">
<Setter Property="HeightRequest" Value="220" />
<Setter Property="ItemLength" Value="44" />
<Setter Property="Margin" Value="0, 16"/>
<Setter Property="ItemStyle">
<Setter.Value>
<Style TargetType="telerikDataControls:SpinnerItemView">
<Setter Property="TextColor" Value="LightCoral" />
</Style>
</Setter.Value>
</Setter>
<Setter Property="SelectedItemStyle">
<Setter.Value>
<Style TargetType="telerikDataControls:SpinnerItemView">
<Setter Property="TextColor" Value="Black" />
<Setter Property="FontAttributes" Value="Bold" />
</Style>
</Setter.Value>
</Setter>
</Style>
</ResourceDictionary>
</ContentPage.Resources>
<StackLayout>
<telerikInput:RadTimePicker SpinnerStyle="{StaticResource PopupSpinnerStyle}"/>
</StackLayout>
Hello,
We have implemented a control that displays a RadDateTimePicker and we are using it on Android, iOS and UWP platforms with Xamarin.Forms.
We would like the popup to be positioned just below or above the control that displays it, could you tell us how it would be possible to do this?
We are using this nugets versions:
Greetings.