0

如果动作完成,如何在任何动作上旋转图像并关闭它。示例就像同步图像。

4

1 回答 1

0

我假设您正在使用 apicturebox来保存您的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

旋转翻转

于 2013-03-22T12:03:03.967 回答