我正在向窗格添加标签,如下所示:
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));
}
然而,除非我弄错了,否则标签下面应该有一个蓝色条?为什么它们漂浮在窗格上方?