/// <summary> /// Animates the inner box /// </summary> public void AnimateInnerBox() { var animFadeIn = new DoubleAnimation { From = 0, To = 1, Duration = new Duration(TimeSpan.FromMilliseconds(800)) }; Inner.BeginAnimation(OpacityProperty, animFadeIn); }