1 réponse
Bonjour,
source :
https://stackoverflow.com/questions/21869908/java-jtabbedpane-align-title-text-to-center
A+
//Create new label to be used as a tab name
JLabel tabLabel = new JLabel("Tab", JLabel.CENTER);
//add new label at set location
jTabbedPane.setTabComponentAt(0, tabLabel);
source :
https://stackoverflow.com/questions/21869908/java-jtabbedpane-align-title-text-to-center
A+