我已经检查了ResourceManager,但似乎我错过了一些东西,或者我只是检查了错误的地方。
答案 0 :(得分:2)
阅读this article。有一个示例在资源包中嵌入图像并使用资源管理器获取它。它看起来如下。在您的资源包(RegistrationForm.properties
文件)中:
flag=Embed("images/unitedstates.gif")
提取图片:
<fx:Metadata>
[ResourceBundle("RegistrationForm")]
</fx:Metadata>
<s:Image source="{resourceManager.getClass('RegistrationForm', 'flag')}"/>