C # Implementation of carriage return function key function keys

Source: Internet
Author: User

This article describes the C # keyboard input enter key to achieve the Click button Effect of the method, in C # project development is very practical value. Share to everyone for your reference.

The implementation method is as follows:

Set the KeyPreview of the form to true

Then set the Keydown,keyup or KeyPress event. Intercepted in the KeyDown event.




private void Formgongxujindu_keydown (object sender, KeyEventArgs e) {switch (E.keycode) { Case Keys.Escape:if (DialogResult.OK = = MessageBox.Show ("Hint: Are you sure you want to exit?") Press "OK" to confirm exit, press "ESC" to cancel the operation! "," hint ", Messageboxbuttons.okcancel, Messageboxicon.question, Messageboxdefaultbutton.button1 ) {this.                    Close ();                } break;                        Case Keys.return: {if (textbox1.focused = = True | | textbox2.focused = = TRUE)                            {Button1_Click (sender, E);                        Return                }} break;                Case Keys.F1:break;                Case Keys.F2:break;                Case Keys.F3:break;            Case Keys.F4:break;   }     } 


C # Implementation of carriage return function key function keys

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

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.