C# Windows Formsでラベルを反転/回転するにはどうすればよいですか?
背景画像をラベルに設定しました。
時間間隔ごとに、右側に 3 ピクセル移動します。フォームの終了位置に到達したら、ラベルを裏返して裏返す必要があります。
以下の方法を試しましたが、解決できませんでした。
private void timer1_Tick(object sender, EventArgs e){
if (label2.Location.X < this.Width)
label2.Location = new Point(label2.Location.X + incr, label2.Location.Y);
else
{
incr = -2;
label2.Location = new Point(label2.Location.X - 50, label2.Location.Y);
label1.Image.RotateFlip();
}
this.Refresh();
}