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