我正在努力做到这一点,当我按下向上箭头时,它会将图片框向上移动,向下箭头向下移动,等等。但我似乎无法让它工作。它给了我错误:
无法修改“System.Windows.Forms.Control.Location”的返回值,因为它不是变量
这是我的代码:
private void Form1_KeyDown(object sender, KeyEventArgs e)
{
if(e.KeyCode == Keys.Up)
{
ImgGuy.Location.Y--;
}
else if (e.KeyCode == Keys.Down)
{
ImgGuy.Location.Y++;
}
else if (e.KeyCode == Keys.Left)
{
ImgGuy.Location.X--;
}
else if (e.KeyCode == Keys.Right)
{
ImgGuy.Location.X++;
}
任何帮助是极大的赞赏。