覆盖 VK_Tab 焦点操作
再会!
我正在向 jTextField 添加 keyevent 侦听器,以便如果用户按下 Tab 键,插入符号位置将转到 jtextField 内文本的末尾,这是我的代码:
private void jTextField1KeyPressed(java.awt.event.KeyEvent evt) {
if(evt.getKeyCode()==KeyEvent.VK_TAB){
evt.consume();
jTextField1.setCaretPosition(jTextField1.getText().length());
}
}
但它不起作用。
我怎样才能做到这一点?
Good Day!
I am tying to add keyevent listener to jTextField so that if the user pressed the tab key, the caret position will go to the end of the text inside the jtextField, here is my code:
private void jTextField1KeyPressed(java.awt.event.KeyEvent evt) {
if(evt.getKeyCode()==KeyEvent.VK_TAB){
evt.consume();
jTextField1.setCaretPosition(jTextField1.getText().length());
}
}
But it doesn't work.
How can i make this happen?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一种方法是:
jTextField1.setFocusTraversalKeysEnabled(false);
将 JTextField 的焦点遍历键启用属性设置为 false,例如:
当然,此代码将阻止您通过 Shift-Tab 移出 JTextField,因此,如果此行为是必要且重要的,您可以使用 setFocusTraversalKeys(KeyboardFocusManager.FORWARD_TRAVERSAL_KEYS, Collections.emptySet()) 而不是完全禁用焦点遍历。
另外,您想要的行为违背了大多数窗口操作系统的标准,因此您需要有一个非常好的理由来实现这一点,因为您可能会让用户感到困惑。
One way is to:
jTextField1.setFocusTraversalKeysEnabled(false);
For example:
Of course this code will prevent you from being able to shift-tab out of the JTextField, and so if this behavior is necessary and important, you could use
setFocusTraversalKeys(KeyboardFocusManager.FORWARD_TRAVERSAL_KEYS, Collections.<KeyStroke>emptySet())
instead of completely disabling focus traversal.Also, your desired behavior goes against the standards of most windowing operating systems, so you'll want to have a darn good reason for desiring this because you may confuse your users.