如何在特定时间间隔内将“图像”移动到另一个地方

时间:2012-09-22 06:52:35

标签: c# winforms visual-studio-2010 image timer

如何将Image个地方移至time intervals中的另一个地方C#

1 个答案:

答案 0 :(得分:1)

通过使用System.Windows.Forms.Timer类,您可以实现所需。

System.Windows.Forms.Timer t = new System.Windows.Forms.Timer();


t.Interval = 15000; // specify interval time as you want
t.Tick += new EventHandler(timer_Tick);
t.Start();

void timer_Tick(object sender, EventArgs e)
{
      //Put logic to change picture box location
}

通过使用stop()方法,您可以停止计时器。

t.Stop();

点击此链接:Move images in C#