WPF and RotateTransform and Y Axis?

  • Thread starter Thread starter BartMan
  • Start date Start date
B

BartMan

Greetings,

I was wondering if there is a way to rotate a control, grid, ect, along the
Y axis?
The RotateTransform appears to work with X axis, and I would like to rotate
a textbox along the Y axis. Is there a way to do this in WPF?

I am new to WPF, and I am trying out different things.
Thanks in advance for any suggestions.
 
You need to get some books on WPF that talk about the LayoutTransform
vs. the RenderTransform or you'll never get this to do what you want.
I'm pretty sure it's covered in the WPF Unleashed book I have. The
problem you're likely facing is that the object location layout pass
is made after the rotate transform, thus repositioning your object
back to it's original place. Try setting the RenderTransform property.
 
Back
Top