Rotate picturebox [closed]
how in windows forms rotate picturebox element at 45 degrees
You can use Graphics.RotateTransform
on the image.
Graphics graphic = Graphics.FromImage(myImage);
graphic.RotateTransform(45);
http://www.codeproject.com/KB/graphics/RotatePictureBox.aspx in that they clearly explained with sample
For the picture inside the picturebox, use Bitmap.FlipRotate method.
精彩评论