Databind GradientStop Colors
I want to be able to databind a gradientstop's color to my template's background color, but I want to keep the alpha value of the gradient.This following does not work in XAML, but is there another way to do it?
<GradientStop Offset="0">
<GradientStop.Color>
<Color A="255" R="{Binding RelativeSource={RelativeSource TemplatedParent},Path=Background.Color.R}" G="{Binding RelativeSource={RelativeSource TemplatedParent},Path=Background.Color.G}" B="{Binding RelativeSource={RelativeSource TemplatedParent},Path=Background.Color.B}"//>
</GradientStop.Color>
</GradientStop>

