Is there an event that fires when WPF animation finishes?
void HideDefaultScreenImageTimer_Tick(object sender, EventArgs e) { HideDefaultScreenImageTimer.Stop(); var doubleAnimation = new DoubleAnimation(1, 0, new Duration(TimeSpan.FromSeconds(0.45))); DefaultScreenImage.BeginAnimation(UIElement.OpacityProperty, doubleAnimation);
c # wpf xaml
Terminador
source share