特に、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 に答える