MXML 中的左侧属性 - Flex 4 SDK

发布于 2024-08-04 06:21:58 字数 174 浏览 7 评论 0原文

为什么以下按钮没有与左边缘对齐 100 像素?

<mx:Button left="100"></mx:Button>

我正在使用 Flex 4(Gumbo) SDK,我非常确定如果您尝试在 FlashBuilder 中执行此操作,它会起作用。

Why does the following button not line up 100px from the left edge?

<mx:Button left="100"></mx:Button>

I am using the Flex 4(Gumbo) SDK, I am pretty sure that if you try to do it in FlashBuilder, it would work.

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

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

发布评论

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

评论(2

苄①跕圉湢 2024-08-11 06:21:58

您使用的是绝对布局还是相对布局?

<mx:Application Layout="absolute">

如果尝试其中任何一个都不起作用......我认为我从未见过有人使用“左”(我确信它有效,但对我来说看起来很奇怪)。尝试将“left”更改为“x”:

<mx:Button x="100" />

Are you using absolute or relative layout?

<mx:Application Layout="absolute">

And if trying either of those doesn't work... I don't think I've ever seen someone use "left" (I'm sure it works, but it looks odd to me). Try changing "left" to "x":

<mx:Button x="100" />
紙鸢 2024-08-11 06:21:58

检查是否将其嵌套在其他组件中。

在此示例中,按钮将放置在左侧 200 像素处(面板 100 像素 + 按钮左侧属性 100 像素)

<s:Panel x="100" y="100" width="250" height="200">
    <mx:Button left="100"></mx:Button>
</s:Panel>

Check if you have it nested in some other component.

In this example button will be placed 200px left (100px for panel + 100px button for button left attribute)

<s:Panel x="100" y="100" width="250" height="200">
    <mx:Button left="100"></mx:Button>
</s:Panel>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文