where is the underscore in my CheckBox?
问题 The shortest possible program to show my problem: import javafx.application.Application; import javafx.geometry.Insets; import javafx.scene.Scene; import javafx.scene.control.CheckBox; import javafx.scene.control.Label; import javafx.scene.layout.Priority; import javafx.scene.layout.StackPane; import javafx.scene.layout.VBox; import javafx.stage.Stage; public class TestCheckBox extends Application { public static void main(String[] args) { launch(args); } public void start(Stage stage) {