到目前为止,这是我的代码:
Public TabbedPaneGraphic{
super(new GridLayout(1, 1));
JTabbedPane tabbedPane = new JTabbedPane();
ImageIcon icon = createImageIcon("");
for(int i=0; i< 4; i++)
{
JPanel panel = new JPanel();
tabbedPane.addTab("Name " + i , icon, panel,
"Panel " + (i+1));
tabbedPane.setMnemonicAt(0, KeyEvent.VK_1);
}
add(tabbedPane);
tabbedPane.setSize(new Dimension(300, 300));
tabbedPane.setTabLayoutPolicy(JTabbedPane.SCROLL_TAB_LAYOUT);
}
我希望为每个单独的选项卡面板添加一个由线条组成的网格,条件是“i”是什么(例如drawLine(0,i,0,100 * i))。但是,我没有看到任何方法在“for”循环中添加这样的网格 - 这甚至可能吗?如果没有,我该怎么做?