質問

私の問題を示すための可能な限り最短プログラム:

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) {
        Scene scene = new Scene(new StackPane());
        final VBox vbox = new VBox();
        vbox.getChildren().addAll(new Label("ABC_DEF"), new CheckBox("ABC_DEF"));
        ((StackPane) scene.getRoot()).getChildren().add(vbox);
        stage.setScene(scene);
        stage.show();
    }
}
.

リード:

画像の入力ここにある画像の入力

SceneBuilderでは、それが正常に表示されているが、私のアプリケーションでは表示されません。Java 1.8.0-B129

を実行しています

任意のヒント?

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top