我想用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);
}
}
如果您有任何想法,请分享:-)谢谢