我已经使用JavaFX几个月了,我必须说我真的很喜欢它。但是,最近,我一直在尝试使用场景构建器制作自定义组件。
让我说我的自定义组件名为CustomTable,看起来像这样
public class CustomTable extends VBox{
public CustomTable(){
try {
FXMLLoader loader = new FXMLLoader(getClass().getResource("CustomTable.fxml"));
loader.setRoot(this);
loader.setController(this);
loader.load();
} catch (IOException e ){
throw new RuntimeException(e);
}
}
}
我有相应的FXML文件
<fx:root prefHeight="444.0" prefWidth="472.0" type="VBox" xmlns="http://javafx.com/javafx/8" xmlns:fx="http://javafx.com/fxml/1" fx:controller="CustomTable">
<children>
<TableView maxHeight="1.7976931348623157E308" maxWidth="1.7976931348623157E308" minHeight="-Infinity" minWidth="-Infinity" prefHeight="410.0" prefWidth="297.0" VBox.vgrow="ALWAYS">
<columns>
<TableColumn prefWidth="75.0" text="Testing Column 1" />
<TableColumn prefWidth="75.0" text="Testing Column 2" />
</columns>
<columnResizePolicy>
<TableView fx:constant="CONSTRAINED_RESIZE_POLICY" />
</columnResizePolicy>
</TableView>
</children>
现在,如果我将此CustomTable导入“场景”构建器,它允许我像常规组件一样使用它。因此,如果我创建一个新视图并将其拖到该视图上,我会得到类似的结果。
<GridPane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity"
minWidth="-Infinity" prefHeight="436.0" prefWidth="621.0"
xmlns:fx="http://javafx.com/fxml/1" xmlns="http://javafx.com/javafx/8">
<columnConstraints>
<ColumnConstraints hgrow="SOMETIMES" minWidth="10.0"
prefWidth="100.0" />
<ColumnConstraints hgrow="SOMETIMES" minWidth="10.0"
prefWidth="100.0" />
</columnConstraints>
<rowConstraints>
<RowConstraints minHeight="10.0" prefHeight="30.0"
vgrow="SOMETIMES" />
</rowConstraints>
<children>
<VBox prefHeight="444.0" prefWidth="472.0" GridPane.columnIndex="1">
<children>
<TableView maxHeight="1.7976931348623157E308" maxWidth="1.7976931348623157E308"
minHeight="-Infinity" minWidth="-Infinity" prefHeight="410.0"
prefWidth="297.0" VBox.vgrow="ALWAYS">
<columns>
<TableColumn prefWidth="75.0" text="Testing Column 1" />
<TableColumn prefWidth="75.0" text="Testing Column 2" />
</columns>
<columnResizePolicy>
<TableView fx:constant="CONSTRAINED_RESIZE_POLICY" />
</columnResizePolicy>
</TableView>
</children>
</VBox>
<Button mnemonicParsing="false" prefHeight="38.0" prefWidth="94.0"
text="TEST" GridPane.halignment="CENTER" />
</children>
我认为将组件扩展出来是有意义的。我觉得它应该是这样的。
<GridPane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity"
minWidth="-Infinity" prefHeight="436.0" prefWidth="621.0"
xmlns:fx="http://javafx.com/fxml/1" xmlns="http://javafx.com/javafx/8">
<columnConstraints>
<ColumnConstraints hgrow="SOMETIMES" minWidth="10.0"
prefWidth="100.0" />
<ColumnConstraints hgrow="SOMETIMES" minWidth="10.0"
prefWidth="100.0" />
</columnConstraints>
<rowConstraints>
<RowConstraints minHeight="10.0" prefHeight="30.0"
vgrow="SOMETIMES" />
</rowConstraints>
<children>
<CustomTable GridPane.columnIndex="1" prefHeigh="444.0"
prefWidth="472.0" />
<Button mnemonicParsing="false" prefHeight="38.0" prefWidth="94.0"
text="TEST" GridPane.halignment="CENTER" />
</children>
有人知道如何在放入场景构建器时使自定义组件扩展,或者这是一个尚未修复/实现的错误/功能?我觉得这对于制作可重复使用的自定义组件非常重要。
答案 0 :(得分:0)
经过一番调查后,我意识到了自己的问题。我直接导入了FXML,这当然会让FXML得到扩展。正确的解决方案是将类和FXML一起JAR并导入该jar文件。这将产生正确的行为。