Tag: jradiobutton buttongroup

如何添加JRadioButton在JTable组中

我已经使用渲染器和编辑器将单选button添加到JTable 。 我也创build了相同的组。 我无法达到排他性(只有1个单选button应该被选中)使用这个原则。 请参阅下面的代码,并感谢您的回应。 渲染器和编辑器类: class RadioButtonRenderer implements TableCellRenderer { public Component getTableCellRendererComponent(JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column) { if (value == null) return null; return (Component) value; } } class RadioButtonEditor extends DefaultCellEditor implements ItemListener { private JRadioButton button; public RadioButtonEditor(JCheckBox checkBox) { super(checkBox); } public Component […]