0
TextArea
はScrollPane
にあり、ScrollPane
はTextArea
でgetParent()
を5回呼び出すと見つかります。 TextArea
の座標をScrollPane
に関連付ける方法がありますか?別のノード/ペインに相対的なノードの境界を取得するjavafx
TextArea
はScrollPane
にあり、ScrollPane
はTextArea
でgetParent()
を5回呼び出すと見つかります。 TextArea
の座標をScrollPane
に関連付ける方法がありますか?別のノード/ペインに相対的なノードの境界を取得するjavafx
あなたがこれを行うことができます:
をBounds bounds =
scrollPane.sceneToLocal(textArea.localToScene(textArea.getBoundsInLocal()));
ここでは完全な例です:
import javafx.application.Application;
import javafx.beans.value.ChangeListener;
import javafx.geometry.Bounds;
import javafx.geometry.Insets;
import javafx.geometry.Pos;
import javafx.scene.Scene;
import javafx.scene.control.ScrollPane;
import javafx.scene.control.TextArea;
import javafx.scene.control.TextField;
import javafx.scene.layout.BorderPane;
import javafx.scene.layout.VBox;
import javafx.scene.paint.Color;
import javafx.scene.shape.Rectangle;
import javafx.stage.Stage;
public class TextAreaBoundsInScrollPane extends Application {
@Override
public void start(Stage primaryStage) {
ScrollPane scrollPane = new ScrollPane();
VBox scrollPaneContent = new VBox(5);
TextArea textArea = new TextArea();
scrollPaneContent.setPadding(new Insets(10));
scrollPaneContent.setAlignment(Pos.CENTER);
scrollPaneContent.getChildren().add(new Rectangle(200, 80, Color.CORAL));
scrollPaneContent.getChildren().add(textArea);
scrollPaneContent.getChildren().add(new Rectangle(200, 120, Color.CORNFLOWERBLUE));
scrollPane.setContent(scrollPaneContent);
BorderPane root = new BorderPane(scrollPane);
root.setTop(new TextField());
root.setBottom(new TextField());
ChangeListener<Object> boundsChangeListener = (obs, oldValue, newValue) -> {
Bounds bounds = scrollPane.sceneToLocal(textArea.localToScene(textArea.getBoundsInLocal()));
System.out.printf("[%.1f, %.1f], %.1f x %.1f %n", bounds.getMinX(), bounds.getMinY(), bounds.getWidth(), bounds.getHeight());
};
textArea.boundsInLocalProperty().addListener(boundsChangeListener);
textArea.localToSceneTransformProperty().addListener(boundsChangeListener);
scrollPane.localToSceneTransformProperty().addListener(boundsChangeListener);
Scene scene = new Scene(root, 400, 400);
primaryStage.setScene(scene);
primaryStage.show();
}
public static void main(String[] args) {
launch(args);
}
}
これはにtextAreaの境界を見つけるだろうか?それは私のために働いていないようです。 – Vasting
はい、スクロールペインの座標系のテキスト領域の境界を示します。 –
SSCCEを追加しました。 –