gpt4 book ai didi

java - 如何聚焦空组合框

转载 作者:行者123 更新时间:2023-12-02 06:01:53 25 4
gpt4 key购买 nike

在我的项目中,我有一个空的组合框,我想在单击它后填充它。

comboCurrent = new JComboBox<String>();     
comboCurrent.setBounds(265, 181, 80, 20);
add(comboCurrent);
comboCurrent.setEditable(true);
comboCurrent.setSelectedItem(null);
comboCurrent.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
// TODO populate here
System.out.println(e);
}
});

但不知何故, Action 监听器在这里不起作用。有没有办法在组合框仍为空时监听组合框的第一次单击?

最佳答案

ActionListener 仅在您按 Enter 键时调用。对于第一次点击,我建议您使用 FocusListenerMouseListener在您的 JComboBox 上。

关于java - 如何聚焦空组合框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22604956/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com