private void LizzardAndPresentsFadeOut(object sender, EventArgs e) { fadeInAnimation.Completed -= LizzardAndPresentsFadeOut; fadeOutAnimation.Completed += EvoCraftLogoFadeIn; LizzardLogo.BeginAnimation(Image.OpacityProperty, fadeOutAnimation); PresentsTextBlock.BeginAnimation(Image.OpacityProperty, fadeOutAnimation); }
private void Page_Loaded(object sender, System.Windows.RoutedEventArgs e) { fadeInAnimation.Completed += PresentsFadeIn; LizzardLogo.BeginAnimation(Image.OpacityProperty, fadeInAnimation); }