从面板切换到jtabbedPane

时间:2013-08-10 11:00:01

标签: java swing tabs jpanel

我有一个包含2个JPanel的tabbedPane。

tabbedPane = new JTabbedPane();

tabbedPane.addTab("Main", null, mainPanel, "Does nothing");
    tabbedPane.setMnemonicAt(0, KeyEvent.VK_1);

tabbedPane.addTab("Report", null, reportPanel, "Still does nothing");

我在第一个小组中,在操作后我会转到第二个面板(主要 - >报告)。

我该怎么做?

1 个答案:

答案 0 :(得分:3)