Method sp.setVvalue(app.spvalue.intValue());
不會將vbox滾動到所需的位置。如何設置所需的位置scrollpane?
mvPane = new VBox();
mvPane.setStyle("-fx-background-color: #fff;");
GetPlayList(app,root);
sp = new ScrollPane();
sp.setVbarPolicy(ScrollPane.ScrollBarPolicy.AS_NEEDED);
sp.setContent(mvPane);
sp.setVvalue(40);
setCenter(sp);
sp.getVvalue();
函數GetPlayList添加了許多標籤。
考慮選擇項目,然後按照這裏的建議: –
charo
謝謝,但我不知道如何考慮選擇項目? – user1924304
我想你會提到JavaFX的scrollpane控件,所以刪除了「jscrollpane」標籤。 app.spvalue是指什麼?你如何設置該變量?提供更多的細節。 –