已有爬文
但還是不知道哪裡有問題
程式碼如下
private void plane_KeyDown(object sender,KeyEventArgs key)
{
plane.Visible = false;
switch(key.KeyCode)
{
case Keys.Left:
if (plane.Left > 0)
plane.Left -= 110;
break;
case Keys.Right:
if (plane.Left < 330)
plane.Left += 110;
break;
}
}
中間有插入過
plane.Visible = false
但沒有執行
在想是不是根本這程式
就不會執行