明白了,楼主第二个方法的做法是正确的,而且应该这样做,在JTextField中监听键盘Enter事件来时button产生按下 *** 作,或者直接调用button按下 *** 作的actionperformed方法。
对于发的截图,我估计是对方使得鼠标在输入框时将焦点变位“确定”按钮,或者整个window组件只有“确定”按钮设置焦点选中,这样enter键会按下确定,这样是不符合逻辑的,应该鼠标在哪个组件哪个组件为当前组件(即选中),估计是对方并不知道button的doClick方法(或者直接调用“确定”按钮的事件)或者习惯性那样不合理的用法。
刚才写了个程序,楼主看看符合要求不
import javaxswing;
import javaxswingborder;
import javaawt;
import javaawtevent;
class TestFocus extends JFrame implements FocusListener {
JButton btn;
JTextArea text1,text2;
boolean b=true;
public TestFocus() {
btn=new JButton("切换焦点");
btnaddActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
if(b) {
//text2setRequetFocusEnabled(fasle);
text1grabFocus();
b=false;
}
else{
text2grabFocus();
b=true;
}
}
});
JPanel p1=new JPanel(new FlowLayout());
p1add(BoxcreateGlue());
p1add(btn);
p1add(BoxcreateGlue());
JPanel p2=new JPanel(new FlowLayout());
text1=new JTextArea();
text2=new JTextArea();
p2add(create(text1,"第一个文本域"));
p2add(create(text2,"第二个文本域"));
text1addFocusListener(this);
text2addFocusListener(this);
getContentPane()add(p1,"North");
getContentPane()add(p2,"Center");
setVisible(true);
setSize(200,200);
}
public static void main(String [] args) {
new TestFocus();
}
public JScrollPane create(JTextArea text,String s) {
textsetLineWrap(true);
JScrollPane jsp=new JScrollPane(text);
Border border=BorderFactorycreateLineBorder(Colorblue);
jspsetBorder(BorderFactorycreateTitledBorder(border,s,TitledBorderLEFT,TitledBorderTOP));
return jsp;
}
public void focusGained(FocusEvent e) {
JTextArea text=(JTextArea)egetSource();
if(text==text1) {
text1setText("");
text1setText("获得焦点");
}
if(text==text2) {
text2setText("");
text2setText("获得焦点");
}
}
public void focusLost(FocusEvent e) {
JTextArea text=(JTextArea)egetSource();
if(text==text1) {
text1setText("");
text1setText("失去焦点");
}
if(text==text2) {
text2setText("");
text2setText("失去焦点");
}
}
}
JDialog(Dialog owner, String title, boolean modal)
创建一个具有指定标题、模式和指定所有者 Dialog 的对话框
你说的是模式对话框,构造JDialog时,指定modal为true就可以了。
以上就是关于关于Java swing组件焦点的问题(我猜可能是焦点的问题) 高分求全面全部的内容,包括:关于Java swing组件焦点的问题(我猜可能是焦点的问题) 高分求全面、高手支招 java FocusListener焦点事件如何实现在两个JTextField中确认焦点!、java 窗体得到焦点的问题等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)