We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug
<lottie:LottieAnimationView x:Name="lottieAnimation" Canvas.Left="140" Canvas.Top="-40" Width="180" Height="180" HorizontalAlignment="Center" VerticalAlignment="Center" AutoPlay="False" FileName="{Binding Path=LottieFileChart}" RepeatCount="0"> <lottie:LottieAnimationView.RenderTransform> <RotateTransform Angle="30" CenterX="0" CenterY="0" /> </lottie:LottieAnimationView.RenderTransform> </lottie:LottieAnimationView>
Button Click Event Handler
private void Button_Click(object sender, RoutedEventArgs e) { //lottieAnimation.StopAnimation(); lottieAnimation.PlayAnimation(); }
To Reproduce Steps to reproduce the behavior:
Uncommenting StopAnimation makes no difference.
Expected behavior Every time I click the button the animation should play
The text was updated successfully, but these errors were encountered:
The control was designed to:
PlayAnimation(): it starts playing, however if it is already playing, nothing happens. StopAnimation(): it stops an animation that is playing.
I will have a look. The stop not affecting it is weird. I'll have a look in the StopPlaying() too.
Sorry, something went wrong.
05115ca
quicoli
No branches or pull requests
Describe the bug
Button Click Event Handler
To Reproduce
Steps to reproduce the behavior:
Uncommenting StopAnimation makes no difference.
Expected behavior
Every time I click the button the animation should play
The text was updated successfully, but these errors were encountered: