如何将Image
个地方移至time intervals
中的另一个地方C#
?
答案 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#