java 中的 requestFocus() ?

发布于 2024-08-25 12:38:05 字数 106 浏览 5 评论 0原文

在 JTable 中,如果要向第一列中的 4 行插入值,则默认情况下焦点将转到第一行和第二列。我想聚焦同一行的下一列(即第 4 行)。如何在 JTable 中按行设置 requestFocus()?

In JTable, if you are inserting values to that row of 4 in first column, Then the focus goes to first row and second column by default. I want to focus the next column of the same row( ie., row 4). How to set requestFocus() in JTable by row wise.?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

伤感在游骋 2024-09-01 12:38:05
table.changeSelection(...);
table.changeSelection(...);
〃温暖了心ぐ 2024-09-01 12:38:05

我们应该使用以下方法在 JTable.ie 中设置 requestFocus,

table.isCellSelected(rowPosition, colPosition);

然后光标位置自动移动到指定位置。

We should used the following method for setting a requestFocus in JTable.ie.,

table.isCellSelected(rowPosition, colPosition);

Then the cursor position goes to automatically in specified location.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文