I have a Rectangle Shape in Silverlight that is rotated 15 degrees. It is filled with an image. The normal behavior of SL is to rotate the Fill object with it's parent (the rectangle, in this case). Is there any way to ignore the transform effect for the Fill object? I'd like the image to continue to point north on the screen.
Here's the XAML I have below. I'd like to see if there is a property or another way to not rotate the ImageBrush (image2.png).
<Rectangle x:Name="Rectangle_5_ID6" RenderTransformOrigin="0.5 0.5" Height="24" Width="78" Stroke="#000000" StrokeThickness="1" Canvas.Top="25" Canvas.Left="25">
<Rectangle.RenderTransform>
<TransformGroup>
<RotateTransform Angle="15" />
</TransformGroup>
</Rectangle.RenderTransform>
<Rectangle.Fill>
<ImageBrush ImageSource="image2.png" />
</Rectangle.Fill>
</Rectangle>