我有一个包含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");
我在第一个面板中,经过一个操作,我将转到第二个面板(Main-> Report)。
我该怎么做?
最佳答案