所以这篇文章:Custom FXML component (w/ controller) doesn't appear in SceneBuilder's "Import jar" dialog
它说您不能导入依赖第三方组件的自定义组件。但是我不能相信这一点(这将是愚蠢的)……我现在正在努力根据图书馆 JFoenix 中的组件创建自定义组件。
所以我有这个fxml和控制器:
SelectableList.fxml
<?xml version="1.0" encoding="UTF-8"?>
<?import com.jfoenix.controls.JFXButton?>
<?import com.jfoenix.controls.JFXListView?>
<?import javafx.geometry.Insets?>
<?import javafx.scene.control.Label?>
<?import javafx.scene.layout.AnchorPane?>
<?import javafx.scene.layout.VBox?>
<?import javafx.scene.text.Font?>
<fx:root type="AnchorPane" xmlns="http://javafx.com/javafx/10.0.1" xmlns:fx="http://javafx.com/fxml/1">
<children>
<VBox alignment="TOP_CENTER" prefHeight="743.2" prefWidth="400.0" AnchorPane.bottomAnchor="0.0" AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="0.0" AnchorPane.topAnchor="0.0">
<children>
<Label fx:id="titleLabel" text="Title" textFill="#000000de">
<font>
<Font name="Roboto Medium" size="36.0" />
</font>
<VBox.margin>
<Insets bottom="40.0" top="40.0" />
</VBox.margin>
</Label>
<JFXListView fx:id="itemList" prefHeight="660.0" prefWidth="400.0" />
<JFXButton fx:id="addButton" focusTraversable="false" onAction="#addElement" prefHeight="50.0" prefWidth="500.0" styleClass="addbutton" stylesheets="@application.css" text="+" textFill="#21ce12ad">
<font>
<Font name="Roboto" size="33.0" />
</font>
</JFXButton>
</children>
</VBox>
</children>
</fx:root>
SelectableList.java
package de.goehring.components;
import com.jfoenix.controls.JFXButton;
import com.jfoenix.controls.JFXListView;
import javafx.fxml.FXML;
import javafx.fxml.FXMLLoader;
import javafx.scene.control.Label;
import javafx.scene.layout.AnchorPane;
import java.io.IOException;
public class SelectableList<T> extends AnchorPane {
@FXML
private Label titleLabel;
@FXML
private JFXListView<T> itemList;
@FXML
private JFXButton addButton;
public SelectableList() {
FXMLLoader fxmlLoader = new FXMLLoader(getClass().getResource("SelectableList.fxml"));
fxmlLoader.setRoot(this);
fxmlLoader.setController(this);
try {
fxmlLoader.load();
} catch (IOException exception) {
throw new RuntimeException(exception);
}
}
@FXML
void addElement() {
}
}
我到底在做什么错。当导入为jar时,我的SceneBuilder无法识别此组件。
答案 0 :(得分:0)
@slaw发布的相关问题解决了我的问题。
要研究它:SceneBuilder nested custom nodes
因此,基本上,如果您对本主题感到困惑,请克隆SceneBuilder并通过在工具包项目下检查类JarExplorer
开始调试它。
通过x.printStacktrace()
添加stacktrace输出时,您会看到未加载项目的原因。
因此,在我的情况下,正如所链接的文章所提到的:您需要设置正确的类加载器。(还有一个斜杠。请诅咒您的Java资源。)
这就是我的构造函数现在的样子:
FXMLLoader fxmlLoader = new FXMLLoader(getClass().getResource("/SelectableList.fxml"));
fxmlLoader.setRoot(this);
fxmlLoader.setController(this);
fxmlLoader.setClassLoader(getClass().getClassLoader());
try {
fxmlLoader.load();
} catch (IOException exception) {
throw new RuntimeException(exception);
}
然后,它就很好了。
如果有人在启动SceneBuilder项目时遇到问题:
使用IntelliJ。您可以单击build.gradle并启动“运行”任务。由于Java 11需要在命令行中加载模块,因此可以使用此方法。否则,您会收到一条错误消息,告知您缺少“ JavaFX组件”。
希望这会有所帮助。