flex 切换按钮栏按钮宽度
我如何在tooglebuttonbar 上使用按钮的百分比宽度,因为我不想使用宽度属性。
How could i use percentage width for buttons at tooglebuttonbar, because i dont want to use the width property.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要设置组件的百分比宽度:
在 MXML 中,您可以设置 宽度
使用百分比值的属性。
在 AS3 中,使用 percentWidth
属性。
但是,如果您想设置toggleButtonBar中按钮的百分比宽度,您可以查看buttonWidth 样式,但我怀疑不接受百分比。如果没有,您将必须扩展组件并重写 updateDisplayList() 方法以根据百分比调整按钮的大小和位置。
To set percentage width of a component:
In MXML, you can set the width
property using a percentage value.
In AS3, use the percentWidth
property.
However, if you want to set the percentage width of buttons in a toggleButtonBar you can look at the buttonWidth style, but I suspect that doesn't accept percentages. If not, you're going to have to extend the component and re-write the updateDisplayList() method to size and position the buttons based on a percentage.