自动选择下一个面板 JTabbedPane

Automatic selection of next panel JTabbedPane

在标记第 1 小时出勤后 运行 时间,第 2 小时面板是否有任何自动选择选项(我正在使用 JTabbedPane)。

This is my JFrame

看看JTabbedPane#setSelectedIndex and JTabbedPane#getSelectedIndex。只需将所选索引设置为 selectedIndex + 1,但确保检查新索引是否超出范围 (JTabbedPane#getTabCount)。