如何翻转/旋转 C# Windows 窗体中的标签?
我将背景图像设置为我的标签。
在每个时间间隔,它都会向右移动三个像素。当它到达表单结束位置时,我需要将标签翻转并转回。
我尝试了以下方法,但没有得到解决方案。
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();
}