任何更改 JTable 组件默认行为的方法
有什么方法可以更改 JTable 使用的默认快捷键吗?例如,我想更改 Home 和 End 键,这样它们就会移动到第一/最后一行而不是第一/最后一列。
有办法做到这一点吗?谢谢你的帮助。
is there any way to change default shortcuts used by JTable? For instance I would like to change Home and End keys, so they would move to first/last row instead of first/last column.
Any way to do this? Thank you for help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将 inputmap 与以下字符串 "selectLastRow" 和 "selecFirstRow" 一起使用,
如下所示:
Use inputmap with the following strings "selectLastRow" and "selecFirstRow"
Like this:
您可以使用
Ctrl+HOME
和Ctrl+END
移至第一行/最后一行。您应该尽量不要改变这种行为,因为这是用户习惯的。You can use
Ctrl+HOME
andCtrl+END
to move to the first/last row. You should try not to change this behaviour because this is what users are used to.