0
,所以我已經從一個矩形JavaFX的問題將方形當座標
rect.setX(10);
下面的代碼,我也
rect.setY(20);
但每當我編譯應用程序的矩形總是移到應用程序框架的中間。使用
進口:
import javafx.application.Application;
import javafx.application.Platform;
import javafx.scene.shape.*;
import javafx.scene.Scene;
import javafx.geometry.Insets;
import javafx.scene.input.MouseEvent;
import javafx.event.EventHandler;
import javafx.scene.input.KeyCombination;
import javafx.scene.paint.Color;
import javafx.scene.layout.*;
import javafx.scene.layout.StackPane;
import javafx.stage.Stage;
您用於將矩形放置在場景上的佈局是什麼? – ItachiUchiha