flex 切换按钮栏按钮宽度

发布于 2024-09-14 14:32:41 字数 51 浏览 3 评论 0原文

我如何在tooglebuttonbar 上使用按钮的百分比宽度,因为我不想使用宽度属性。

How could i use percentage width for buttons at tooglebuttonbar, because i dont want to use the width property.

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

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

发布评论

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

评论(1

魂牵梦绕锁你心扉 2024-09-21 14:32:41

要设置组件的百分比宽度:

  1. 在 MXML 中,您可以设置 宽度
    使用百分比值的属性。

  2. 在 AS3 中,使用 percentWidth
    属性。

但是,如果您想设置toggleButtonBar中按钮的百分比宽度,您可以查看buttonWidth 样式,但我怀疑不接受百分比。如果没有,您将必须扩展组件并重写 updateDisplayList() 方法以根据百分比调整按钮的大小和位置。

To set percentage width of a component:

  1. In MXML, you can set the width
    property using a percentage value.

  2. 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.

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