I would like to use TabPane (JavaFX) to display the contents of 20 different tabs. This works great with the standard TabPane, however, when the panel falls into a certain number of tabs, the / ComboBox button can be clicked to click on one of the tabs that were not visible.
I am developing a function that will be used on the touch screen, so this is not ideal. I think it would be more intuitive to have two separate rows of tabs.
How can I add two rows of tabs to TabPane or what can be done to achieve a similar effect? Thanks in extended.
Here is a sample code to reproduce what I mean:
public class TabTest extends Application {
public static void main(String args[]) {
Application.launch(args);
}
@Override
public void start(Stage primaryStage) throws Exception {
primaryStage.setTitle("Tabs Test");
Group root = new Group();
Scene scene = new Scene(root, 450, 250, Color.WHITE);
TabPane tabPane = new TabPane();
BorderPane borderPane = new BorderPane();
for( int i = 0; i < 20; i++)
{
Tab tab = new Tab();
tab.setText("Tab " + i);
HBox hbox = new HBox();
hbox.getChildren().add(new Label("Tab " + i));
tab.setContent(hbox);
tabPane.getTabs().add(tab);
}
borderPane.prefHeightProperty().bind(scene.heightProperty());
borderPane.prefWidthProperty().bind(scene.widthProperty());
borderPane.setCenter(tabPane);
root.getChildren().add(borderPane);
primaryStage.setScene(scene);
primaryStage.show();
}
Link to the tab, since I can not post images yet