public void GoForward(System.Windows.Controls.Frame view)
        {
            var currentContent = (UIElement)view.Content;

            if (currentContent == null)
            {
                return;
            }

            Frame.GoForward.Enabled = false;
            var fadeOutAnimation = new DoubleAnimation(0d, TimeSpan.FromSeconds(0.25));

            fadeOutAnimation.Completed += (o, e) =>
            {
                view.GoForward();
                Frame.GoForward.Enabled = true;
            };

            currentContent.BeginAnimation(UIElement.OpacityProperty, fadeOutAnimation);
        }