Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个关于我目前正在创建的 Java GUI 的问题,它是一个运行异地备份的应用程序。
当应用程序最初加载时,您会看到此屏幕:
加载配置文件后,它会填写下面选项卡中的每个字段;在这个阶段,我加载配置文件后它停留在“运行”选项卡上,但我希望它(在填写每个字段后)将“配置”选项卡带到屏幕上。
我该怎么做呢?在我编写的在 JFileChooser 窗口关闭后加载配置的方法中,我想我需要添加一些东西来告诉它选择配置选项卡。
如有必要,我可以提供课程。
暴露组件,然后使用方法:
CTabFolder#setSelection(int);
工作正常。
感谢@MadProgrammer 和@Vulcan