Table of Contents
Form and Control KeyEvent
Home Backend Development PHP Tutorial Form and Control KeyEvent_PHP Tutorial

Form and Control KeyEvent_PHP Tutorial

Jul 12, 2016 am 08:58 AM
android

Form and Control KeyEvent

一、Form的KeyEvent

Form and Control KeyEvent_PHP Tutorial

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. }


www.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...
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot Article Tags

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

New report delivers damning assessment of rumoured Samsung Galaxy S25, Galaxy S25 Plus and Galaxy S25 Ultra camera upgrades New report delivers damning assessment of rumoured Samsung Galaxy S25, Galaxy S25 Plus and Galaxy S25 Ultra camera upgrades Sep 12, 2024 pm 12:23 PM

New report delivers damning assessment of rumoured Samsung Galaxy S25, Galaxy S25 Plus and Galaxy S25 Ultra camera upgrades

Samsung Galaxy S25 Ultra leaks in first render images with rumoured design changes revealed Samsung Galaxy S25 Ultra leaks in first render images with rumoured design changes revealed Sep 11, 2024 am 06:37 AM

Samsung Galaxy S25 Ultra leaks in first render images with rumoured design changes revealed

IFA 2024 | TCL\'s NXTPAPER 14 won\'t match the Galaxy Tab S10 Ultra in performance, but it nearly matches it in size IFA 2024 | TCL\'s NXTPAPER 14 won\'t match the Galaxy Tab S10 Ultra in performance, but it nearly matches it in size Sep 07, 2024 am 06:35 AM

IFA 2024 | TCL\'s NXTPAPER 14 won\'t match the Galaxy Tab S10 Ultra in performance, but it nearly matches it in size

Vivo Y300 Pro packs 6,500 mAh battery in a slim 7.69 mm body Vivo Y300 Pro packs 6,500 mAh battery in a slim 7.69 mm body Sep 07, 2024 am 06:39 AM

Vivo Y300 Pro packs 6,500 mAh battery in a slim 7.69 mm body

New report delivers damning assessment of rumoured Samsung Galaxy S25, Galaxy S25 Plus and Galaxy S25 Ultra camera upgrades New report delivers damning assessment of rumoured Samsung Galaxy S25, Galaxy S25 Plus and Galaxy S25 Ultra camera upgrades Sep 12, 2024 pm 12:22 PM

New report delivers damning assessment of rumoured Samsung Galaxy S25, Galaxy S25 Plus and Galaxy S25 Ultra camera upgrades

Samsung Galaxy S24 FE billed to launch for less than expected in four colours and two memory options Samsung Galaxy S24 FE billed to launch for less than expected in four colours and two memory options Sep 12, 2024 pm 09:21 PM

Samsung Galaxy S24 FE billed to launch for less than expected in four colours and two memory options

Motorola Razr 50s shows itself as possible new budget foldable in early leak Motorola Razr 50s shows itself as possible new budget foldable in early leak Sep 07, 2024 am 09:35 AM

Motorola Razr 50s shows itself as possible new budget foldable in early leak

Xiaomi Redmi Note 14 Pro Plus arrives as first Qualcomm Snapdragon 7s Gen 3 smartphone with Light Hunter 800 camera Xiaomi Redmi Note 14 Pro Plus arrives as first Qualcomm Snapdragon 7s Gen 3 smartphone with Light Hunter 800 camera Sep 27, 2024 am 06:23 AM

Xiaomi Redmi Note 14 Pro Plus arrives as first Qualcomm Snapdragon 7s Gen 3 smartphone with Light Hunter 800 camera

See all articles