在属性中使用fx:constant?

时间:2013-02-15 16:17:20

标签: javafx-2 constants fxml

我想知道,是否可以在属性中使用<fx:constant>而不是单独的标记?

目前这对我有用:

<Label>
    <text>
        <MyController fx:constant="MY_CONSTANT_STRING" />
    </text>
</Label>

虽然我更喜欢这样的东西:

<Label text="<MyController fx:constant="MY_CONSTANT_STRING" />" /> 

是否可能是后者?

感谢任何提示!

0 个答案:

没有答案