import javafx.application.Application; import javafx.scene.Node; import javafx.scene.Scene; import javafx.scene.control.Pagination; import javafx.scene.layout.Pane; import javafx.stage.Stage; /* * To change this template, choose Tools | Templates * and open the template in the editor. */ /** * * @author Pavel Kouznetsov (pavel.kouznetsov@oracle.com) */ public class PaginationsCss extends Application { @Override public void start(Stage stage) throws Exception { Pane root = new Pane(); Pagination control = new Pagination(47); control.setMaxPageIndicatorCount(5); control.getStyleClass().add(Pagination.STYLE_CLASS_BULLET); root.getChildren().add(control); stage.setScene(new Scene(root)); stage.show(); } public static void main(String[] args) { launch(args); } }