我想从 Flex 容器中获取父母 ID

发布于 2024-10-15 23:25:09 字数 333 浏览 5 评论 0原文

我遇到问题,因此我创建了一个名为 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

长不大的小祸害 2024-10-22 23:25:09

假设您不能只使用 text="{this.id}"

在 Container1.mxml 内,有一个调用此函数的创建完成侦听器:

protected function _handleCreate(e:Event):void {
    myTextLabel.text = this.id || "unknown";
}

Assuming you can't just use text="{this.id}"?

Inside Container1.mxml, have a creation complete listener that calls this function:

protected function _handleCreate(e:Event):void {
    myTextLabel.text = this.id || "unknown";
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文