Is it somehow possible to fade out the content that is not visible in the SurfaceScrollViewer?
As mentioned in the answer I tried this, but couldn’t recognize any fading:
//fading out
Rectangle fade = new Rectangle();
fade.Width = 478;
fade.Height = 140;
fade.IsHitTestVisible = false;
LinearGradientBrush myBrush = new LinearGradientBrush();
myBrush.GradientStops.Add(new GradientStop(Color.FromArgb(50, 50,50,50), 0.0));
myBrush.GradientStops.Add(new GradientStop(Colors.Transparent, 0.5));
myBrush.GradientStops.Add(new GradientStop(Color.FromArgb(50, 50, 50, 50), 1.0));
fade.Fill = myBrush;
I finally solved it that way: