我怎样才能将Image
一个地方移动到另一个地方,特别是time intervals
在C#
?
问问题
564 次
1 回答
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();
查看此链接:在 C# 中移动图像
于 2012-09-22T11:51:27.747 回答