标签: c# winforms
如何在Windows窗体中以45度旋转picturebox元素
答案 0 :(得分:1)
您可以在图片上使用Graphics.RotateTransform。
Graphics.RotateTransform
Graphics graphic = Graphics.FromImage(myImage); graphic.RotateTransform(45);
答案 1 :(得分:0)
http://www.codeproject.com/KB/graphics/RotatePictureBox.aspx,他们清楚地用样本
答案 2 :(得分:0)
对于图片框内的图片,请使用Bitmap.FlipRotate方法。