I'm writing a c# form application and i want to draw a scale and write some rotated values under it,is there any way to do this?
+3
A:
You will need to custom draw using the Graphics class. I assume you have some idea how to do that but if not that's a whole other question on its own involving OnPaint overrides and such. You can then use the Graphics class's RotateTransform method and draw the text.
Josh Einstein
2010-04-22 04:38:47
thank you i think this works.
lajoo
2010-04-22 04:49:48