アプリケーションでメモ帳画面を作成しようとしています。メモが作成されると、それらはロックされて編集できなくなりますが、新しいページをメモに追加することはできます。
TextFlow を使用すると、これをうまくコントロールできると思いました。私がやりたいことは次のとおりです。
**Note Taker Name**
**Date of Note**
Line of Note Text
Line of Note Text
Line of Note Text
Line of Note Text
------------------------------------------
**Note Taker Name**
**Date of Note**
Line of Note Text
Line of Note Text
Line of Note Text
Line of Note Text
私はこの方法でそれを試みました:
String s1 = "line of text";
textFlow.getChildren().add(new Text(s1));
textFlow.getChildren().add(new Text(System.lineSeparator()));
textFlow.getChildren().add(new Separator(Orientation.HORIZONTAL));
textFlow.getChildren().add(new Text(System.lineSeparator()));
textFlow.getChildren().add(new Text(s1));
scrollPane.setFitToWidth(true);
これは、セパレーターがほんの小さな線であることを除いて、私が望むものをほとんど提供します。線が TextFlow 全体を横切るようにしたいのですが、その方法がよくわかりませんでした。
ありがとう。