1. Getting the size of a tab in a JTabbedPane coderanch.com |
2. JTabbedPane - how to set the tab's size? coderanch.com |
3. How to change tab size on Jtabbedpane? coderanch.com |
4. JTabbedPane size forums.oracle.comHi ! I have a JTabbedPane (JTabbedPane tabbedPane = new JTabbedPane();) . I have added three tabs within it (JComponent panel1,panel2,panel3). All this is finally added to a frame. SwingUtilities.invokeLater(new Runnable() {public void run() { JFrame frame = new JFrame("VRDS"); frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); frame.add(new gui()); frame.pack(); frame.setVisible(true); }}); I want to increase the size of the TabbedPane. I have tried using the setSize() ... |