我正在使用ControlsFX项目中的CheckComboBox控件。

但是我想创建一个自定义规则:

当您单击Item0时,它应该清除所有其他选择。
如果再次单击Item0,它将保持选中状态。
如果选择Item(X),它将清除Item0并选择Item(X)。

这个想法是Item0应该是“全部”选项。

java - 自定义CheckComboBox-LMLPHP

编辑:此解决方案是为ControlsFX。

最佳答案

我对ControlsFX不太熟悉,但有些混乱,我认为我找到了解决您问题的方法。以下是完整的示例。我希望这些评论能解决任何问题。

import org.controlsfx.control.CheckComboBox;
import javafx.application.Application;
import javafx.collections.FXCollections;
import javafx.collections.ListChangeListener;
import javafx.collections.ObservableList;
import javafx.scene.Scene;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;

public class Main extends Application {

    public void start(Stage mainStage) throws Exception {


        ObservableList<String> items = FXCollections.observableArrayList();

        items.addAll(new String[] { "All", "Item 1", "Item 2", "Item 3", "Item 4" });

        CheckComboBox<String> controll = new CheckComboBox<String>(items);

        controll.getCheckModel().getCheckedItems().addListener(new ListChangeListener<String>() {
            public void onChanged(ListChangeListener.Change<? extends String> c) {

                while (c.next()) {
                    if (c.wasAdded()) {
                        if (c.toString().contains("All")) {

                            // if we call the getCheckModel().clearChecks() this will
                            // cause to "remove" the 'All' too at least inside the model.
                            // So we need to manually clear everything else
                            for (int i = 1; i < items.size(); i++) {
                                controll.getCheckModel().clearCheck(i);
                            }

                        } else {
                            // check if the "All" option is selected and if so remove it
                            if (controll.getCheckModel().isChecked(0)) {
                                controll.getCheckModel().clearCheck(0);
                            }

                        }
                    }
                }
            }
        });

        Scene scene = new Scene(controll);
        mainStage.setScene(scene);
        mainStage.show();
    }

    public static void main(String[] args) {
        launch(args);
    }
}

10-08 01:34