我可以在 fx 标签中使用数据绑定吗?
我的应用程序使用 fx 标签,在其中加载一些 xml。我想通过绑定创建 xml 名称,但出现错误:编译时处理的属性不支持数据绑定表达式。
<fx:XML id="{xml_props}" />
<fx:XML id="{xml_props}" />
是否有办法实现相同的功能?
My application uses fx tag in which it loads some xml. I want to create the xml name by binding, but I get an error that Data binding expressions not supported with attributes processed at compile time.
<fx:XML id="{xml_props}" />
<fx:XML id="{xml_props}" />
Is there anyway to achive the same functionality?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请参阅以下文档。
fx:XML
标签不会在运行时加载 XML 文件,而是将其嵌入到编译时。如果您需要在运行时加载 XML,请参阅以下文档。Please refer to the following documentation.
fx:XML
tags is not loading XML file at runtime but embed it in compile time. If you need to load XML at runtime refer to the following documentation.