-1
bsave.setOnAction(e -> savecontacts());
private void savecontacts(){
Name.getText();
PhoneNumber.getText();
Address.getText();
System.out.println("Save");
}
Rectangle rect = new Rectangle(0, 500, Color.WHITE);
ScrollPane sp = new ScrollPane();
sp.setPrefSize(280, 280);
sp.setContent(rect);
イベント処理時にデータを保存するためにtextFeildsからデータを取得しています。今私はこのデータをスクロールペインに表示する必要があります。私はどのように表示しますか?スクロールペインにデータを追加する方法は?
Oracleのドキュメント(
Contact
は、この場合は、あなたのアイテムのクラスになります) scrollpane.html) –[単純な例](http://stackoverflow.com/questions/7766844/java-jscrollpane?answertab=votes#tab-top) –