我想在我的應用程序中創建一個記事本屏幕。一旦創建了筆記,它們就被鎖定並且無法編輯,但是新的頁面可以添加到筆記中。如何推斷TextFlow中的分頁符?
我認爲使用TextFlow將是一個很好的控制。我想這樣做的是以下幾點:
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);
這爲我提供了相當多我想要的東西,除了分隔符是隻是一個很小的一行:
**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
我也這樣嘗試過。我希望該行可以跨越整個TextFlow,但我不確定如何去做。
謝謝。
感謝。我沒有意識到我可以確定它的大小。會給它一個鏡頭。 –