wpf animation tutorial
-out effects. XAML Example: ```xml ``` C Code-Behind: ```csharp private void FadeInButton_Click(object sender, RoutedEventArgs e) { DoubleAnimation fadeIn = new DoubleAnimation(0, 1, TimeSpan.FromSeconds(1)); MyButton.BeginAnimation(UIElement.OpacityProperty, fadeIn); }