use of com.cas.sim.tis.view.control.imp.pagination.PaginationBar in project TeachingInSimulation by ScOrPiOzzy.
the class PagebarTest method start.
@Override
public void start(Stage primaryStage) throws Exception {
PaginationBar pagination = new PaginationBar();
pagination.setPageCount(1);
Scene scene = new Scene(pagination);
primaryStage.setScene(scene);
primaryStage.show();
// pagination.getPageBtn().getToggles().get(0).setSelected(true);
}
Aggregations