// To create a tabbed pane, see e828 创建JTabbedPane // Remove the last tab
pane.remove(pane.getTabCount()-1); // Remove the tab with the specified child component
pane.remove(component); // Remove all the tabs
pane.removeAll();
Related Examples |
2021-07-13 16:22:38
// To create a tabbed pane, see e828 创建JTabbedPane // Remove the last tab
pane.remove(pane.getTabCount()-1); // Remove the tab with the specified child component
pane.remove(component); // Remove all the tabs
pane.removeAll();
Related Examples |