在单个GUI窗口中将3个JavaFX特性合并到一个类中



我正在尝试将3个功能组合到一个JavaFX类中。我的第一个特性以圆圈的形式显示"WELCOME TO JAVA"。第二个显示一个随机1和0的10x10矩阵。第三个显示一个笑脸。它们应该一个接一个地显示在一个窗格中。我有了第一个和第三个特征,但是矩阵的那个让我迷惑了。虽然一切都应该在一个单一的窗格显示在同一个GUI窗口(每个教授),我不知道我怎么能做矩阵,而不是创建gridPane。它在没有尺寸限制的情况下显示得很好,但随后它占据了整个屏幕,我的其他两个功能就不可见了。当我添加约束条件时,它会变小,数字就不可见了。我不知道该怎么解决。有人能帮帮我吗?

        Pane pane = new Pane();
        // Create a circle and set its properties
        Circle circle = new Circle();
        circle.setCenterX(100);
        circle.setCenterY(100);
        circle.setRadius(50);
        circle.setStroke(null); 
        circle.setFill(null);
        pane.getChildren().add(circle); // Add circle to the pane
        //Display WELCOME TO JAVA with the text forming a circle
        int i = 0;
        String phrase = "WELCOME TO JAVA ";
        double degree = 360 / phrase.length();
        for (double degrees = 0; i < phrase.length(); i++, degrees += degree) {
            double pointX = circle.getCenterX() + circle.getRadius() *
                Math.cos(Math.toRadians(degrees));
            double pointY = circle.getCenterY() + circle.getRadius() *
                Math.sin(Math.toRadians(degrees));
            Text letter = new Text(pointX, pointY, phrase.charAt(i) + "");
            letter.setFill(Color.BLACK);
            letter.setFont(Font.font("Times New Roman", FontWeight.BOLD, 20));
            letter.setRotate(degrees + 90);
            pane.getChildren().add(letter); }
        //Create a 10x10 matrix of 1s and 0s
        GridPane pane2 = new GridPane();
        pane2.setHgap(1);
        pane2.setVgap(1);
        Button[][] matrix;
        int length = 10;
        int width = 10;
        ArrayList<TextField> textFields = new ArrayList<>();
        for (int y = 0; y < length; y++) {
            ColumnConstraints colConst = new ColumnConstraints();
            colConst.setPercentWidth(10);
            pane2.getColumnConstraints().add(colConst);
            for (int x = 0; x < width; x++) {
                RowConstraints rowConst = new RowConstraints();
                rowConst.setPercentHeight(10);
                pane2.getRowConstraints().add(rowConst);
                Random rand = new Random();
                int random1 = rand.nextInt(2);
                TextField textf = new TextField();
                textf.setText("" + random1);
                textf.setPrefSize(15, 15);
                pane2.setRowIndex(textf,  x);
                pane2.setColumnIndex(textf,  y);
                pane2.getChildren().add(textf);
            }}
                //Create a smiley face
                Circle circle2 = new Circle();
                circle2.setCenterX(600.0f);
                circle2.setCenterY(100.0f);
                circle2.setRadius(50.0f);
                circle2.setStroke(Color.BLACK);
                circle2.setFill(null);
                pane.getChildren().add(circle2);
                Circle leftInnerEye = new Circle();
                    leftInnerEye.setCenterX(580.0f);
                    leftInnerEye.setCenterY(85.0f);
                    leftInnerEye.setRadius(5);
                    leftInnerEye.setStroke(Color.BLACK);
                    pane.getChildren().add(leftInnerEye);
                Ellipse leftOutterEye = new Ellipse();
                    leftOutterEye.setCenterX(580.0f);
                    leftOutterEye.setCenterY(85.0f);
                    leftOutterEye.setRadiusX(11.0f);
                    leftOutterEye.setRadiusY(8.0f);
                    leftOutterEye.setStroke(Color.BLACK);
                    leftOutterEye.setFill(null);
                    pane.getChildren().add(leftOutterEye);
                Circle rightEye = new Circle();
                    rightEye.setCenterX(620.0f);
                    rightEye.setCenterY(85.0f);
                    rightEye.setRadius(5);
                    rightEye.setStroke(Color.BLACK);
                    pane.getChildren().add(rightEye);
                Ellipse rightOutterEye = new Ellipse();
                    rightOutterEye.setCenterX(620.0f);
                    rightOutterEye.setCenterY(85.0f);
                    rightOutterEye.setRadiusX(11.0f);
                    rightOutterEye.setRadiusY(8.0f);
                    rightOutterEye.setStroke(Color.BLACK);
                    rightOutterEye.setFill(null);
                    pane.getChildren().add(rightOutterEye);
                Polygon nose = new Polygon();
                    nose.getPoints().setAll(
                            600d, 90d,
                            588d, 115d,
                            612d, 115d );
                    nose.setStroke(Color.BLACK);
                    nose.setFill(null);
                    pane.getChildren().add(nose);
                Arc mouth = new Arc(600, 115, 30, 16, 180, 180);
                    mouth.setFill(null);
                    mouth.setType(ArcType.OPEN);
                    mouth.setStroke(Color.BLACK);
                    pane.getChildren().add(mouth);
            HBox hbox = new HBox(pane, pane2);
            hbox.autosize();
            hbox.setAlignment(Pos.BASELINE_LEFT);
            hbox.setPadding(new Insets(20));
        // Create a scene and place it in the stage
        Scene scene = new Scene(hbox, 1000, 500);
        primaryStage.setTitle("Laura's Chapter 14"); // Set the stage title
        primaryStage.setScene(scene); // Place the scene in the stage
        primaryStage.show(); // Display the stage
        } 
    catch(Exception e) {
        e.printStackTrace();
    }
}
public static void main(String[] args) {
    launch(args);
}

为每个功能创建一个窗格,然后将功能添加到VBoxHBox,这将是场景的根窗格。这样,您就可以为第二个特性使用GridPane。JavaFX中有不同的布局,它们的行为也不同。看一下这个文档和它的子文档

相关内容

  • 没有找到相关文章

最新更新