I am trying to rotate by RadBorder to the left by -25. There are Grid with Image and Label inside and they are overlapped. Is it bug or I need to change something in my code? Help, please.
<telerikPrimitives:RadBorder x:Name="bnSolo" Grid.Row="0" Grid.Column="0" BackgroundColor="Transparent"> <Grid BackgroundColor="Transparent"> <Image Source="homesolo" /> <Label Text="Solo" /> </Grid> <telerikPrimitives:RadBorder.GestureRecognizers> <TapGestureRecognizer Tapped="PlayNowButton_Clicked" /> </telerikPrimitives:RadBorder.GestureRecognizers></telerikPrimitives:RadBorder>
await bnSolo.RotateTo(-25, 500, Easing.Linear);await bnSolo.RotateTo(25, 500, Easing.Linear);await bnSolo.RotateTo(0, 500, Easing.Linear);