정확한 layoutx/layouty 값을 찾기 위해 문제가 있습니다. 이 예에서 참조하시기 바랍니다 것은 :이 프로그램을 실행하면layoutx/layouty 값
package test;
import javafx.application.Application;
import javafx.scene.Group;
import javafx.scene.Scene;
import javafx.stage.Stage;
import javafx.scene.shape.Line;
public class TestLinePosition
extends Application
{
private Line line;
private Scene getScene()
{
Group group = new Group();
line = new Line(10, 10, 60, 10);
group.getChildren().add(line);
Scene scene = new Scene(group, 640, 480);
return scene;
}
@Override
public void start(Stage stage) throws Exception
{
stage.setScene(getScene());
stage.show();
System.out.println("x: " + line.getLayoutX() + ", y: " + line.getLayoutY());
}
public static void main(String[] args)
{
Application.launch(args);
}
}
라인이 10에서 시작하여 예상대로 배치 할 것, 10. 그러나 layoutx 및 layouty 값은 수 0
, 0이다 아무도 나에게이 행동에 대한 설명을 주거나 실제 위치를 찾는 방법을 말해 주시겠습니까?
레이아웃 위치에 그림을위한 시작 위치를 혼합하지 마십시오,