我正在尝试将我的视图 currentState 绑定到我在注入的表示模型类中拥有的状态变量。
如果我这样做:
<fx:Binding source="{model.state}" destination="{this.currentState}">
然后我收到一条编译器错误消息[project_name]: Initializer for 'destination': data binding expression not allowed here.
UIComponent 属性 currentState 有一个公共设置器。
为什么我不能让我的视图currentState
属性成为绑定的目标?