My application uses fx tag in which it loads some xml. I want to c开发者_Python百科reate 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?
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.
精彩评论