ListView 似乎已经有一个滚动条。我希望滚动条始终可见。原因是我在上面放了一个标题,并在滚动条和标题之间的角落里放了一个按钮。如何让 ListView 滚动条始终显示?
问问题
16643 次
1 回答
5
您可以将其放入适当大小的 ScrollPane 并将 ScrollPane 的 vbar 策略设置为 ALWAYS:
@Override
public void start(Stage primaryStage) throws Exception {
ScrollPane pane = new ScrollPane();
ListView<String> list = new ListView<String>();
ObservableList<String> items = FXCollections.observableArrayList(
"Single", "Double", "Suite", "Family App");
list.setItems(items);
pane.prefWidthProperty().bind(list.widthProperty());
pane.prefHeightProperty().bind(list.heightProperty());
pane.setContent(list);
pane.setVbarPolicy(ScrollPane.ScrollBarPolicy.ALWAYS);
Group group = new Group();
group.getChildren().add(pane);
Scene scene = new Scene(group, 500, 500);
primaryStage.setScene(scene);
primaryStage.show();
}
于 2013-07-02T07:30:30.623 回答