动态将 VBox 更改为 HBox

发布于 2024-08-31 09:39:26 字数 139 浏览 3 评论 0原文

我需要一个奇怪的解决方案。我有一个要求,即在 VBox 中显示两个组件。但是,在单击主容器时,我需要将其最大化,并且需要水平显示组件。我只是想知道是否可以使用动作脚本或其他方式动态地将 VBox 更改为 HBox,反之亦然。

提前致谢, 干杯,PK

I am in need of a strange solution. I have one requirement in which I am displaying two components in a VBox. But on click of the main container I need to maximize that and need to display the components in horizontal. I was just wondering whether I can change the VBox to HBox and viceversa dynamically using actionscript or some other way.

Thanks in Advance,
Cheers, PK

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

很酷不放纵 2024-09-07 09:39:26

使用 mx:Box 并动态设置direction 属性。

MXML:

<mx:Box id="box" direction="vertical"/>

AS3:

box.direction = BoxDirection.HORIZONTAL;

Use a mx:Box and set the direction property dynamically.

MXML:

<mx:Box id="box" direction="vertical"/>

AS3:

box.direction = BoxDirection.HORIZONTAL;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文