swing JTable:调整“输入”所以它的作用与双击一行相同
我脑子抽筋了——如何设置 JTable
以便回车键的作用与双击一行相同?
“好的”强力方法是调用 JTable.getInputMap()
和 JTable.getActionMap()
并添加新的操作名称和新的 Action
code> 执行双击操作。但我想一定有更好的方法......
I'm having a brain cramp -- how do I set up a JTable
so that the enter key acts the same as double-clicking a row?
The "nice" brute force way is to call JTable.getInputMap()
and JTable.getActionMap()
and add a new action name and a new Action
that does a double-click. But there must be a better way, I think....
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的“暴力”方式是常态,Peter Lang 的
KeyListener
是一种替代方式。来自 Sun 关于按键绑定的讨论:Your "brute force" way is the norm, with Peter Lang's
KeyListener
being an alternative. From Sun's discussion on Key Bindings: