好友
阅读权限40
听众
最后登录1970-1-1
|
mycsy
发表于 2009-4-15 20:50
void Timer1Tick(object sender, EventArgs e)
{
int FWidth = this.panel1.Width;
int FHeight = this.panel1.Height;
Point LPos = new Point(this.label1.Location.X, this.label1.Location.Y);
if (LPos.Y < FHeight)
{
this.label1.Location = new Point(LPos.X, LPos.Y+2);
return;
}
else
{
this.label1.Location = new Point(0, 0);
}
}
void MainFormLoad(object sender, EventArgs e)
{
this.timer1.Start();
}
=============================
一个LAB
一个TIME
OK |
|
发帖前要善用【论坛搜索】功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。 |
|
|
|
|