@Override
public void start(Stage stage) throws Exception {
environments = new ArrayList<CacheEnvironment>();
stage.setTitle("OSRS Cache Suite " + SuiteConstants.VERSION + "." + SuiteConstants.SUB_VERSION);
stage.setResizable(false);
Group rootGroup = new Group();
Scene scene = new Scene(rootGroup, SuiteConstants.WIDTH, SuiteConstants.HEIGHT);
cacheChooser = new DirectoryChooser();
VBox vertical = new VBox();
this.setupMenuBar(stage);
vertical.getChildren().add(bar);
setupTabPane(stage);
vertical.getChildren().add(tabPane);
rootGroup.getChildren().add(vertical);
stage.setScene(scene);
stage.show();
}
CacheSuite.java 文件源码
java
阅读 16
收藏 0
点赞 0
评论 0
项目:OS-Cache-Suite
作者:
评论列表
文章目录