程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> c#-窗體無法接受鍵盤消息

c#-窗體無法接受鍵盤消息

編輯:編程綜合問答
窗體無法接受鍵盤消息

用窗體生成器自動生成的代碼

  private void Form1_KeyDown(object sender, KeyEventArgs e) {
            MessageBox.Show("af");
            if (listBox1.Items.Contains(e.KeyCode)) {
                listBox1.Items.Remove(e.KeyCode);
                listBox1.Refresh();


                //this part will increse the difficult of the game by putting down the interval
                if (timer1.Interval > 400) timer1.Interval -= 10;
                if (timer1.Interval > 250) timer1.Interval -= 8;
                if (timer1.Interval > 100) timer1.Interval -= 2;


                status.Update(true);
            } else {
                status.Update(false);
            }
            progressBar1.Value = 800 - timer1.Interval;
            labelCorrect.Text = "correct:  "+status.correct.ToString();
            LabelMiss.Text = "missed:  "+100;
            labelTotal.Text = "total;  "+status.total.ToString();
            labelAccuracy.Text = "Accuracy: "+status.total.ToString();

        }

按鍵之後程序無響應 對話框也彈不出來 求大神講解

最佳回答:


Form的keypreview設置為true
看下Form1_KeyDown有沒有綁定到KeyDown事件上

tabe123
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved