我對c#相當陌生,當我按下WASD鍵時圖片框移動,但圖片框拒絕移動。圖片框沒有對接,鎖定或錨定。這是我的代碼:用鍵盤移動圖片盒
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace Imagebox_test1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_KeyDown(object sender, KeyEventArgs e)
{
int x = pictureBox1.Location.X;
int y = pictureBox1.Location.Y;
if (e.KeyCode == Keys.D) x += 1;
else if (e.KeyCode == Keys.A) x -= 1;
else if (e.KeyCode == Keys.W) x -= 1;
else if (e.KeyCode == Keys.S) x += 1;
pictureBox1.Location = new Point(x, y);
}
}
}
我不知道發生了什麼事!謝謝您的幫助!
調試器告訴你什麼當你通過代碼? –
將插入符號放在'Form1_KeyDown'的開頭,然後按'F9'插入一個斷點。當執行到達斷點時,它將進入調試模式,並且您可以遍歷代碼並查看發生了什麼。首先要考慮的是斷點是否已經達到,即事件是否被解僱。 – SimpleVar
確保KeyPreview在表單上設置爲_true_。 –