有很多类似的问题,但是我不确定自己在做什么错
下面是我的两个班
第1类:
public class CustomTreeTableViewColumn extends JFXTreeTableColumn {
public CustomTreeTableViewColumn() {
super();
}
public CustomTreeTableViewColumn(String text) {
super(text);
}
}
第2类:
public class CustomTreeTableView extends JFXTreeTableView {
public CustomTreeTableView() {
super();
}
}
JFoenix版本:9.0.8 JDK版本:11 场景构建器:Gluon 10.0.0
当我尝试在场景构建器中将上述类作为jar导入时,我看不到任何UI组件。
所以我尝试了以下示例,
SceneBuilder - Add custom component which relies on third party components
Custom FXML component (w/ controller) doesn't appear in SceneBuilder's "Import jar" dialog
,但似乎没有任何效果。
如何在场景生成器中导入这些自定义组件?