0

任意のアクションで画像を回転させ、アクションが完了した場合に閉じる方法。例は、画像の同期のようなものです。

4

1 に答える 1

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

回転フリップ

于 2013-03-22T12:03:03.967 に答える