JavaFX:如果我们动态更改textArea宽度,TextArea promptText位置不会更新

时间:2018-05-16 15:17:02

标签: javafx

我想用TextArea nodeOrientation创建简单的RIGHT_TO_LEFT。它已经完成了。 但是,当我在promptText中调整主容器(窗口)rightTextArea的大小时,不会移动右侧textArea边框。与光标相同。

    public class RightToLeft extends Application {

    @Override public void start(final Stage primaryStage) throws Exception {
        final VBox vbox = new VBox(10);
        vbox.setPadding(new Insets(10));

        TextArea textArea = new TextArea();
        textArea.setPromptText("hello world");

        TextArea rightTextArea = new TextArea();
        rightTextArea.setPromptText("Hello world");
        rightTextArea.setNodeOrientation(NodeOrientation.RIGHT_TO_LEFT);


        TextField textField = new TextField();
        textField.setPromptText("Text field prompt");
        textField.setNodeOrientation(NodeOrientation.RIGHT_TO_LEFT);

        vbox.getChildren().addAll(textArea, rightTextArea, textField);

        primaryStage.setScene(new Scene(vbox));
        primaryStage.show();
    }


    public static void main(String[] args) {
        launch(args);
    }
}

如果您有任何想法,请分享:-)谢谢

0 个答案:

没有答案