0

我使用的是积德OSS 3.1.1

在使用 CheckBoxList 时,我发现它缺少 getCheckBoxListSectionModel?它在文档中,但点运算符没有显示这样的事情。我想知道这是否仅在付费版本中可用??

然而,使用它getSelectionModel()不会触发选定的事件。

    Object[] options = {"This Element","Similar Elements"};
            CheckBoxListWithSelectable checkboxlist = new CheckBoxListWithSelectable(options);
            int result = JOptionPane.showConfirmDialog(rootPane, checkboxlist, 
                       "Please Select Action(s) For This Element", JOptionPane.OK_CANCEL_OPTION);

            checkboxlist.getSelectionModel().addListSelectionListener(new ListSelectionListener() {

                @Override
                public void valueChanged(ListSelectionEvent e) {
                    // TODO Auto-generated method stub
                    System.out.println("selected");
                }
            });
4

1 回答 1

1

我在旧版本(2.10.*)中使用这种方法很好。但是查看 3.1.1 的仓库,它在source中。

另外,您的问题中拼写错误。我希望你正在寻找getCheckBoxListSelectionModel()

于 2012-01-31T21:59:53.737 回答