MXML 中的左侧属性 - Flex 4 SDK
为什么以下按钮没有与左边缘对齐 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您使用的是绝对布局还是相对布局?
如果尝试其中任何一个都不起作用......我认为我从未见过有人使用“左”(我确信它有效,但对我来说看起来很奇怪)。尝试将“left”更改为“x”:
Are you using absolute or relative layout?
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":
检查是否将其嵌套在其他组件中。
在此示例中,按钮将放置在左侧 200 像素处(面板 100 像素 + 按钮左侧属性 100 像素)
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)