如果操作完成,如何在任何操作上旋转图像并关闭它。示例就像同步图像一样。
答案 0 :(得分:0)
我假设您使用picturebox
来保留image
,如果是,您可以使用以下代码rotate
image
,
'I just used a while loop here for testing purpose only, you can use a timer
'for rotating your image smoothly. By the way, stop and start the timer
'according to your need.
While True
PictureBox1.Image.RotateFlip(RotateFlipType.Rotate90FlipNone)
PictureBox1.Refresh()
End While