C#使用Timer控件使一张图片向下移动,求代码.谢谢各位大大, 10

是图片自动向下移动哦,... 是图片自动向下移动哦, 展开
 我来答
OO悠悠我心OO
2012-03-13 · 超过18用户采纳过TA的回答
知道答主
回答量:48
采纳率:0%
帮助的人:51.9万
展开全部
private int startX = 550;
private bool isAdd = false;
public Form1()
{
InitializeComponent();
}

private void picShow_Paint(object sender, PaintEventArgs e)
{
if (isAdd) {
startX += 20;
if (startX > picShow.Width) {
isAdd = false;
}
} else {
if (startX < 0) {
isAdd = true;
}
startX -= 20;
}
e.Graphics.DrawImage(imageList1.Images[0], new Point(startX, 0));
}

private void timer1_Tick(object sender, EventArgs e)
{
picShow.Refresh();
}

private void Form1_Load(object sender, EventArgs e)
{
timer1.Interval = 10;
timer1.Enabled = true;
}

这是以前写的,你把X和Y改一下不就行了?
__迷___
2012-03-18 · 超过25用户采纳过TA的回答
知道答主
回答量:98
采纳率:0%
帮助的人:58.7万
展开全部
在Timer控件的Tick事件中写上
int i = pictureBox1.Location.Y + 10;
pictureBox1.Location = new Point(pictureBox1.Location.X, i);
注意要设置Timer控件的Enabled属性为true
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式