我想从 Flex 容器中获取父母 ID
我遇到问题,因此我创建了一个名为 Container1.mxml 的 mxml 容器文件,其中包含
所以当我调用它时 它将类似于
然后 id 将出现在我的标签文本中。
提前欣赏一下。谢谢
I have an issue, so i created a mxml container file called Container1.mxml that has
<mx:VBox>
<mx:Label text="{textName}" />
</mx:VBox>
so when i call it
it will be something like
<container:Container1 id="hello" />
then the id will appear in my Label text.
appreciate it in advance. thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设您不能只使用
text="{this.id}"
?在 Container1.mxml 内,有一个调用此函数的创建完成侦听器:
Assuming you can't just use
text="{this.id}"
?Inside Container1.mxml, have a creation complete listener that calls this function: