In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-01-16 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >
Share
Shulou(Shulou.com)06/02 Report--
This article introduces how to analyze the realization of C# enter switch focus, the content is very detailed, interested friends can refer to, hope to be helpful to you.
How can C# enter switch focus in WinForm and Web instead of TAB key? What is the specific method for C#C# to enter and switch focus? Let's take a look at the specific implementation process respectively.
C # enter to switch focus in WinForm:
There are text boxes textbox1 and textbox2, and now the cursor is in textbox1. How to make the cursor jump to textbox2 after pressing enter key to realize the function of tab key. First set the TabIndex property of textBox1 and textBox2 to 1 and 2, respectively.
Private void textBox1_KeyPress (object sender, System.Windows.Forms.KeyPressEventArgs e) {if (e.KeyChar = = (char) 13) {SendKeys.Send ("{Tab}");}}
C # enter to switch focus in Web:
On the client side (that is, within the .aspx page), add the following code between < head >.. < / head >:
< script language= "javascript" type= "text/javascript" > function keyDown () {var keycode=event.keyCode; var keyChar=String.fromCharCode (keycode); if (keycode==13) event.keyCode=9;}; * * Note: _ document.onkeydown=keyDown; < / script >
At the same time, add onkeydown= "keyDown ()" to < body >
On how to analyze the implementation of C# enter switch focus is shared here, I hope the above content can be of some help to you, can learn more knowledge. If you think the article is good, you can share it for more people to see.
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.