List of usage examples for javafx.scene.control CheckBox indeterminateProperty
public final BooleanProperty indeterminateProperty()
From source file:Main.java
@Override public void start(Stage stage) { Scene scene = new Scene(new Group()); stage.setWidth(300);//from w ww . j a v a 2 s . c o m stage.setHeight(150); final CheckBox cb = new CheckBox(); cb.setText("checkBox"); cb.setAllowIndeterminate(true); cb.indeterminateProperty().addListener(new ChangeListener<Boolean>() { public void changed(ObservableValue<? extends Boolean> ov, Boolean old_val, Boolean new_val) { System.out.println(cb.isSelected()); } }); ((Group) scene.getRoot()).getChildren().add(cb); stage.setScene(scene); stage.show(); }