What problem does it solve? Implementing UI transitions, state change visualizations, and interactive feedback effects in WPF requires knowing the correct combination of Storyboard, Timeline, Animation types, and EasingFunctions, which is error-prone when written from scratch. ## Core Features & Use Cases - XAML Animation Patterns: Provides ready-to-use DoubleAnimation, ColorAnimation, ThicknessAnimation, and keyframe animation markup triggered by events and property triggers. - Code-Behind Animation Helpers: Includes C# helpers for fade-in/fade-out effects, composite Storyboard animations, and an AnimationController supporting pause, resume, stop, and seek. - VisualStateManager Integration: Supplies state-based animation templates for control states such as Normal, MouseOver, and Pressed. - Use Case: When building a WPF dashboard, use this Skill to add a smooth slide-in panel transition with ThicknessAnimation and a hover scale effect with RenderTransform, following performance guidance to avoid layout recalculation. ## Quick Start Ask the AI to create a WPF fade-in animation for a panel using DoubleAnimation and Storyboard with an easing function.