该用什么语句?
我的程序要求x坐标按照0.2来增加,应该使用什么样的语句来编?
2010-03-31 16:16
2010-03-31 16:36
2010-03-31 16:50
2010-03-31 16:58
2010-03-31 17:18
2010-03-31 17:21
2010-03-31 17:22
程序代码: private void button1_Click(object sender, EventArgs e)
{
timer1.Start();
}
private void timer1_Tick_1(object sender, EventArgs e)
{
this.pictureBox1.Left+=1;
}

2010-03-31 18:12