我想知道,是否可以<fx:constant>
在属性中使用而不是单独的标签?
目前这对我有用:
<Label>
<text>
<MyController fx:constant="MY_CONSTANT_STRING" />
</text>
</Label>
虽然我更喜欢这样的东西:
<Label text="<MyController fx:constant="MY_CONSTANT_STRING" />" />
后一种可能吗?
感谢您的任何提示!