C#中如何让东西在窗体或者picturebox中直线运动,求代码一份
我来答
可选中1个或多个下面的关键词,搜索相关资料。也可直接点“搜索资料”搜索整个问题。
- picturebox
- c#
- 窗体
- 代码
- 搜索资料
往窗口拉一个Button。。
在拉一个Timer组件,组件的属性设置如下:
Enable 是开启这个timer,Invterval是每隔1秒钟运行一次。。
然后 在触发 这个timer的click事件。。写下下面的code。。
int width = 0;
int height = 50;
private void timer1_Tick(object sender, EventArgs e)
{
width += 10;
button1.Location = new Point(width, height);
}
结果。。就可以了~。希望对你有帮助!!
收起
为你推荐: