Form and Control KeyEvent_PHP Tutorial
Jul 12, 2016 am 08:58 AMForm and Control KeyEvent
一、Form的KeyEvent
KeyCode:
- private void Form1_KeyDown(object sender, KeyEventArgs e)
- {
- if ((e.Modifiers == Keys.Control) && (e.KeyCode == Keys.Z))
- {
- this.cancelHandler();
- }
- else if ((e.Modifiers == Keys.Control) && (e.KeyCode == Keys.S))
- {
- this.saveHandler();
- }
- else
- e.Handled = true;
- }
二、Control’s KeyEvent
检测输入control的字符的正确性。
- private void textBox1_KeyPress(object sender, KeyPressEventArgs e)
- {
- if (e.KeyChar == 'b')
- mPwFlag[0] = e.KeyChar;
- if (e.KeyChar == 'a')
- mPwFlag[1] = e.KeyChar;
- if (e.KeyChar == 't')
- mPwFlag[2] = e.KeyChar;
- if (e.KeyChar == '1')
- mPwFlag[0] = e.KeyChar;
- if (e.KeyChar == '2')
- mPwFlag[1] = e.KeyChar;
- if (e.KeyChar == '3')
- mPwFlag[2] = e.KeyChar;
- if (mPwFlag[0] == 'b' && mPwFlag[1] == 'a' && mPwFlag[2] == 't')
- {
- mPwFlag[0] = '0';
- mPwFlag[1] = '0';
- mPwFlag[2] = '0';
- BatCreateTopic bct = new BatCreateTopic(this);
- this.button3.Visible = true;
- bct.ShowDialog(this);
- }
- }

Hot Article

Hot tools Tags

Hot Article

Hot Article Tags

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

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

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

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

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
