当前位置: 技术问答>java相关
怎么在JList或者JTable的中加入checkbox
来源: 互联网 发布时间:2015-07-01
本文导语: 实现当我们右击某个目录,选择属性—》安全,其中显示的权限下面的jList,每一列(完全控制,读取。。)后面有俩个checkbox 这怎么实现,谢谢 | 请看我写的一个文章: www.csdn.net/Author/turbochen | ...
实现当我们右击某个目录,选择属性—》安全,其中显示的权限下面的jList,每一列(完全控制,读取。。)后面有俩个checkbox
这怎么实现,谢谢
这怎么实现,谢谢
|
请看我写的一个文章:
www.csdn.net/Author/turbochen
www.csdn.net/Author/turbochen
|
public class RadioButtonPanel extends JPanel {
JRadioButton[] buttons;
RadioButtonPanel(String[] str) {
setLayout(new BoxLayout(this, BoxLayout.X_AXIS));
buttons = new JRadioButton[str.length];
for (int i=0; i
JRadioButton[] buttons;
RadioButtonPanel(String[] str) {
setLayout(new BoxLayout(this, BoxLayout.X_AXIS));
buttons = new JRadioButton[str.length];
for (int i=0; i