如何将 JCheckbox 放在 JTable 上?
如何将 JCheckbox
或 JButton
放在 JTable
的特定行和列上?
How can I put a JCheckbox
or a JButton
on a specific row and column of a JTable
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
不确定按钮,但这是一个放置复选框的工作示例:
Not sure about a button, but here is a working example to put a checkbox:
从 khachik 的答案中可以看出,对复选框的支持是由基于列的列类的表提供的。
但是,如果您只需要特定列的特定行上的复选框,则需要重写 getCellRenderer(...) 和 getCellEditor(...) 方法以返回给定单元格的渲染器/编辑器。像这样的东西:
As you can tell from khachik's answer support for a check box is provided by a table based on the column class of the column.
However, if you only want a check box on a specific row of a specific column then you need to override the getCellRenderer(...) and getCellEditor(...) methods to return the renderer/editor for the given cell. Something like:
为此,您必须编写一个
TableCellRenderer
和一个TableCellEditor
。您可以从默认的 swing 实现中派生以使其更容易。
在每个类中,您必须重写这些接口的一个方法,并在其中检查传递的
row
和column
参数;如果行和列都符合您的条件,则返回JCheckBox
或JButton
,否则返回super< 返回的
JComponent
/code> 实现(当使用这些接口的默认 swing 实现时)。For that, you'll have to write a
TableCellRenderer
and aTableCellEditor
.You can derive from default swing implementations to make it easier.
In each class, you'll have to override the one method of these interfaces, and in it, check the passed
row
andcolumn
arguments; if both row and column match your criteria, then return aJCheckBox
or aJButton
, otherwise return theJComponent
returned by thesuper
implementation (when using default swing implementations of these interfaces).