我编写了一个程序,在窗格中添加了浅蓝色矩形。然后将窗格添加到场景中。然后使用场景中的矩形显示舞台。当我运行这个程序时,恰恰相反。什么都没有出现。即使我添加,让我们说文字,也没有任何显示。有人能指出我做错了什么吗?我使用JavaFX作为GUI。这是我的代码:
import javafx.application.Application;
import javafx.scene.Scene;
import javafx.scene.layout.Pane;
import javafx.scene.paint.Color;
import javafx.scene.shape.Rectangle;
import javafx.stage.Stage;
public class RectangleBound extends Application {
@Override
public void start(Stage primaryStage) {
Pane p = new Pane();
Rectangle rect = new Rectangle();
rect.setFill(Color.LIGHTSKYBLUE);
rect.setStroke(Color.DEEPSKYBLUE);
rect.setArcWidth(5);
// *C* set the width of the outline of rect to 5
p.getChildren().add(rect);
Scene sc = new Scene(p, 300, 300);
primaryStage.setScene(sc);
primaryStage.setTitle("Bound Rectangle");
primaryStage.show();
}
}
答案 0 :(得分:1)
您尚未指定Rectangle的宽度和高度。只需尝试以下操作即可。
Rectangle rect = new Rectangle(50, 50);