vote up 1 vote down star

Does anyone know if there is an equilant attribute of SVG's "gradientUnits=userSpaceOnUse" in WPF for a LinearGradientBrush? I can't seem to find this.

If not, does anyone know about how to calculate it in (C# or VB.NET)? For example if I have a StartPoint of 0,0 and EndPoint of 1,1 on a Rectangle that is 100x100, the angle is 45 degrees. However, when I change either the width or height of the Rectangle, for example Width=150, the axis is no longer at 45 degrees. How could I calculate to keep the angle at 45 degrees in a rectangle that is not a square so that it runs from bottom left to top right corner for a middle gradientstop.

Appreciate any help on this.

flag

67% accept rate
when you say changing the width or height, are you transforming the rectangle? If yes, are you using Transform or RelativeTransform then? – räph Sep 1 at 6:17
Sorry, I don't think I was clear. I'm not changing the W or H after the fact - I was using a square of 100x100 as an example of the desired result (angle at 45 degrees) for a different sized rectangles, for example 120x220. The desired result is that if there are three line gradients, the middle one would run from bottom left of the rect to top right, directly on that axis. – Otaku Sep 2 at 0:37

1 Answer

vote up 0 vote down

Set the brush MappingMode = BrushMappingMode.Absolute

link|flag
thanks. i've looked at Absolute, but could not figure out how to calculate the Start/End Point locations. – Otaku Sep 2 at 0:38

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.