弹性+自定义组件 +设计时 +绑定
我正在尝试使用此 MXML 创建带有两个标签的简单自定义组件:
<mx:Canvas xmlns:mx="http://www.adobe.com/2006/mxml" width="250" height="30">
<mx:String id="result" />
<mx:Label x="5" y="7" id="titleLabel" text="{label}" width="120"/>
<mx:Label x="125" y="7" id="resultLabel" text="{result}" width="120" textAlign="right" color="#A41D00"/>
</mx:Canvas>
它在运行时运行良好,但是我在设计时遇到了麻烦。如何在设计时使数据绑定工作?如果不可能,我应该如何对标签文本分配进行编码?
I'm trying to create simple custom component with two labels with this MXML:
<mx:Canvas xmlns:mx="http://www.adobe.com/2006/mxml" width="250" height="30">
<mx:String id="result" />
<mx:Label x="5" y="7" id="titleLabel" text="{label}" width="120"/>
<mx:Label x="125" y="7" id="resultLabel" text="{result}" width="120" textAlign="right" color="#A41D00"/>
</mx:Canvas>
It is working well at runtime, bud I have troubles making it working at design-time. How can I make databinding work at the design time? If it is impossible, how should I code the label text assignements?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试使用
text={data.label}
和text={data.result}
而不是仅仅使用label
和result
。Try with
text={data.label}
andtext={data.result}
instead of merelabel
andresult
.您在设计时不会看到实际数据。我不太确定您要做什么,但这是您对标签进行编码的方式
You won't see the actual data at design time. I'm not exactly sure what you're going for but here's how you might code the Labels