import javafx.application.Application; import javafx.collections.FXCollections; import javafx.collections.ObservableList; import javafx.scene.Group; import javafx.scene.Scene; import javafx.scene.control.ListView; import javafx.scene.control.SelectionMode; import javafx.stage.Stage; public class Main extends Application { private static ObservableList names = FXCollections.observableArrayList(); static { names.addAll( // Top 100 boys names for 2010, taken from // http://www.babycenter.com/top-baby-names-2010 "Aiden", "Jacob", "Jackson", "Ethan", "Jayden", "Noah", "Logan", "Caden", "Lucas", "Liam", "Mason", "Caleb", "Jack", "Brayden", "Connor", "Ryan", "Matthew", "Michael", "Alexander", "Landon,Nicholas", "Nathan", "Dylan" ); } /** * @param args the command line arguments */ public static void main(String[] args) { Application.launch(args); } @Override public void start(Stage stage) { stage.setTitle("VirtualFlow ScrollBar Bug"); final Scene scene = new Scene(new Group(), 875, 700); Group root = (Group)scene.getRoot(); final ListView listView = new ListView(); listView.setItems(names); listView.getSelectionModel().setSelectionMode(SelectionMode.MULTIPLE); root.getChildren().add(listView); listView.prefWidthProperty().bind(scene.widthProperty()); listView.prefHeightProperty().bind(scene.heightProperty()); stage.setScene(scene); stage.setVisible(true); } }