저는 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);
}
}
의
가능한 복제 [확인 검사 할 때 모든 항목의 선택을 해제 또는 일부 항목을 unckeck 방법] (https://stackoverflow.com/questions/41229964/how-to-check-and-uncheck-all를 -items-when-checking-or-unckeck-some-of-the-items) –