in C# how to rotate picturebox with its image? [duplicate]
i am developing C# application in that i have to rotate whole picturebox with its iamge, i use rotateFlip() method but it only support 90,180,270 degrees and i want it for 1 degree
Image img = pictureBox1.Image;
img.RotateFlip(RotateFlipType.Rotate90FlipNone);
pictureBox1.Image = img;
PIC_LOAD.Image.RotateFlip(RotateFlipType.Rotate90FlipXY);
PIC_LOAD.Refresh();
精彩评论