作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我成功地在具有 ActionListener 的 JTextField 上使用 postActionEvent() 来模拟用户操作(按 Enter 键)。我想为具有 ActionListener 的 JComboBox 创建相同类型的模拟,但我没有找到 JComboBox 的 postActionEvent()。这是如何实现的(模拟用户按 Enter 键)?
最佳答案
How could this (simulating User pressing Enter key) be accomplished?
组合框有一个“enterPressed”
操作。因此,您应该能够从组合框的 ActionMap
访问 Action
,然后手动调用组合框的 actionPerformed(...)
方法行动。
查看Key Bindings让程序列出所有 Swing 组件的所有绑定(bind)。
关于java - JComboBox 是否有 postActionEvent?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26493650/
我成功地在具有 ActionListener 的 JTextField 上使用 postActionEvent() 来模拟用户操作(按 Enter 键)。我想为具有 ActionListener 的
我正在编写一个程序,该程序在一个输入面板中包含多个 JTextFields 和 2 个 JTextAreas。我在底部有一个提交按钮。我设置了它,所以当用户在每个字段(包括 JTextAreas)中键
我是一名优秀的程序员,十分优秀!