DefaultTableModel 上的单选按钮
如何借助 DefaultTableModel
在我的表格上添加 JRadioButton
?
How can I add a JRadioButton
on my table with the help of DefaultTableModel
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在
DefaultTableModel
中,您需要覆盖getColumnClass()
返回JRadioButton.class
。您还需要一个自定义单元格渲染器和编辑器,如文章 概念:编辑器和渲染器。In
DefaultTableModel
, you'll need to overridegetColumnClass()
to returnJRadioButton.class
. You'll also need a custom cell renderer and editor, as discussed in the article Concepts: Editors and Renderers.