我如何使用actionscript 3动态创建mxml控件并自动处理布局
我想使用 actionscript 3 动态创建 mxml(flex 4) 控件并自动处理布局。例如,如果我想将 6 个按钮和 as:label 放入布局容器中,只需指定容器的位置而不是各个控件的位置。这将有助于通过编程而不是手动创建 mxml 代码。
I want to use actionscript 3 to create mxml(flex 4) controls dynamically and automatically taking care of layout. For example, if I want to put 6 buttons and a s:label in a layout container by just specifying the positioning of the container and not the locations of individual controls. This would help creating the mxml code by programming and not by hand.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果要使用自动布局,只需指定容器的布局类型即可。
您只需使用
.addElement(element)
将控件添加到容器中,布局将考虑它们的自动布局方式。在此处了解有关布局的更多信息
If you want to use automatic layouts, you just need to specify the layout type of the container.
You can just use
.addElement(element)
to add controls to the container and layout will look after how they are automatically laid out.Read more about layouts here