Flex:左下对齐组件?

发布于 2024-08-31 10:59:50 字数 355 浏览 5 评论 0原文

正如标题所示,有什么方法可以让组件左下对齐吗?

嵌套在 中的 不起作用,因为 HBox< 中的元素/code> 是顶部对齐而不是底部对齐。

例如,我希望我的组件像这样对齐:

+-------------+ <-- container
| components  |
|  |    V     |
|  V  +--+    |
| +-+ |  |    |
| +-+ +--+    |
+-------------+

As the title suggests, is there any way to bottom-left align components?

An <HBox .../> nested in a <Canvas .../> doesn't work because the elements in the HBox are top-aligned instead of bottom aligned.

For example, I'd like my components to be aligned like this:

+-------------+ <-- container
| components  |
|  |    V     |
|  V  +--+    |
| +-+ |  |    |
| +-+ +--+    |
+-------------+

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

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

发布评论

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

评论(2

羁绊已千年 2024-09-07 10:59:50

您只需要在水平盒上设置verticalAlign和horizo​​ntalAlign样式,即:

<mx:Canvas>
<mx:HBox verticalAlign="bottom" horizontalAlign="left" left="0" bottom="0"> </mx:HBox>
</mx:Canvas>

You just need to set the verticalAlign and horizontalAlign styles on the hbox ie:

<mx:Canvas>
<mx:HBox verticalAlign="bottom" horizontalAlign="left" left="0" bottom="0"> </mx:HBox>
</mx:Canvas>
美男兮 2024-09-07 10:59:50

延伸 HBox 和/或 Box 以更改位置。我怀疑您可能必须重写 updateDisplayList 方法才能更改组件的定位方式。您可能不想将 y 值设置为“0”,而是将其设置为 unscaledHeight-component.width。

Extend the HBox and/or Box to change the positioning. I suspect you'll probably have to override the updateDisplayList method to change the way components are positioned. Probably instead of setting the y value as "0" you'll want to set it to unscaledHeight-component.width.

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