本文介绍了C#对象的运动..........的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
这是我的代码
This is my code
private void timer2_Tick(object sender, EventArgs e)
{
if (Death.Width == 64)
{
Death.Location = new Point(Death.Location.X + 1, Death.Location.Y);
}
if (Death.Location == new Point(390, 188))
{
Death.Width = 63;
}
if (Death.Width == 63)
{
Death.Location = new Point(Death.Location.X - 1, Death.Location.Y);
}
if (Death.Location == new Point(30, 188))
{
Death.Width = 64;
}
}
推荐答案
这篇关于C#对象的运动..........的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!