我在 Compact framework 2.0 C# 中有一个项目我在 Form 中使用了很多图片框,并且有一个计时器可以每秒更改图片框的位置,但是移动速度非常慢我怎样才能让它更快?
定时器间隔为 100
private void timer1_Tick(object sender, EventArgs e)
{
picust.Location = new Point(picust.Location.X, picust.Location.Y + 10);
picx.Location = new Point(picx.Location.X, picx.Location.Y + 10);
picy.Location = new Point(picy.Location.X, picx.Location.Y + 10);
}