StackPane my_variable @0x401010 42
layoutY="70.0"
。我想在Java文件中使值prefHeight="479.0"
和(70.0)
静态,以便我可以将它们用于其他文件。
这可能吗?
答案 0 :(得分:10)
如果你的常量是在一个类中定义的:
public class SomeClass {
public static final double DEFAULT_HEIGHT = 479 ;
// ...
}
然后您可以按如下方式在FXML中访问它:
<StackPane>
<prefHeight>
<SomeClass fx:constant="DEFAULT_HEIGHT" />
</prefHeight>
</StackPane>
确保在您正在使用的类的fxml文件中有适当的导入。
答案 1 :(得分:9)
James_D向您展示了使用自定义类的方式。在fxml中执行此操作的另一种方法是定义自己的变量。但它们不能跨文件共享。
而不是这个
<StackPane layoutY="70.0" prefHeight="479.0">
你想拥有
<StackPane layoutY="$variable" prefHeight="$variable">
你可以这样做
<?import java.lang.*?>
<?import java.util.*?>
<?import javafx.scene.*?>
<?import javafx.scene.control.*?>
<?import javafx.scene.layout.*?>
<AnchorPane xmlns:fx="http://javafx.com/fxml/1" id="AnchorPane" prefHeight="200" prefWidth="320" fx:controller="javafxapplication22.FXMLDocumentController">
<fx:define>
<Double fx:id="layoutY" fx:value="70.0"/>
<Double fx:id="prefHeight" fx:value="479.0"/>
</fx:define>
<children>
<StackPane layoutY="$layoutY" prefHeight="$prefHeight"/>
<Pane layoutY="$layoutY" prefHeight="$prefHeight"/>
</children>
</AnchorPane>