缺少JTabbedPane上的“顶部边界”?

时间:2014-03-23 15:32:34

标签: java swing border jtabbedpane nimbus

enter image description here

我正在向窗格添加标签,如下所示:

            JTextPane field = new JTextPane();
            field.setText("New test string");
            field.setEditable(false);         
            chatTabPane.addTab("Tab 1", null, new JScrollPane(field),
                    "Does nothing");
            for (int i = 0; i < chatTabPane.getTabCount(); i++) {
                 chatTabPane.setTabComponentAt(i,
                 new ButtonTabComponent(chatTabPane));
            }

然而,除非我弄错了,否则标签下面应该有一个蓝色条?为什么它们漂浮在窗格上方?

0 个答案:

没有答案