Form and Control KeyEvent_PHP教程

來源:互聯網
上載者:User

Form and Control KeyEvent


一、Form的KeyEvent

KeyCode:


  1. private void Form1_KeyDown(object sender, KeyEventArgs e)
  2. {
  3. if ((e.Modifiers == Keys.Control) && (e.KeyCode == Keys.Z))
  4. {
  5. this.cancelHandler();
  6. }
  7. else if ((e.Modifiers == Keys.Control) && (e.KeyCode == Keys.S))
  8. {
  9. this.saveHandler();
  10. }
  11. else
  12. e.Handled = true;
  13. }


二、Control’s KeyEvent

檢測輸入control的字元的正確性。


  1. private void textBox1_KeyPress(object sender, KeyPressEventArgs e)
  2. {
  3. if (e.KeyChar == 'b')
  4. mPwFlag[0] = e.KeyChar;
  5. if (e.KeyChar == 'a')
  6. mPwFlag[1] = e.KeyChar;
  7. if (e.KeyChar == 't')
  8. mPwFlag[2] = e.KeyChar;
  9. if (e.KeyChar == '1')
  10. mPwFlag[0] = e.KeyChar;
  11. if (e.KeyChar == '2')
  12. mPwFlag[1] = e.KeyChar;
  13. if (e.KeyChar == '3')
  14. mPwFlag[2] = e.KeyChar;

  15. if (mPwFlag[0] == 'b' && mPwFlag[1] == 'a' && mPwFlag[2] == 't')
  16. {
  17. mPwFlag[0] = '0';
  18. mPwFlag[1] = '0';
  19. mPwFlag[2] = '0';
  20. BatCreateTopic bct = new BatCreateTopic(this);
  21. this.button3.Visible = true;
  22. bct.ShowDialog(this);
  23. }
  24. }


http://www.bkjia.com/PHPjc/1105051.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/1105051.htmlTechArticleForm and Control KeyEvent 一、Form的KeyEvent KeyCode: private void Form1_KeyDown(object sender, KeyEventArgs e) { if ((e.Modifiers == Keys.Control) (e.KeyCode == Keys.Z)) { this...

  • 聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.