如何在 Flash 中创建多个选项卡式表单子面板
有很多关于如何在 Flash 中创建选项卡的教程,但我找不到解释如何创建关联的子面板并在它们之间切换的教程。
也许这很微不足道,但我在闪存方面非常新手,所以我需要一个教程。
There are many tutorials on how to create just tabs in flash but I can't find none which explains how to create associated subpanels and switching between them.
Maybe it's trivial but I'm very novice at flash so I need a tutorial.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查找 mx.containers.ViewStack 或 mx.containers.TabNavigator。
基本上,您创建一堆页面作为 ViewStack 或 TabNavigator 的子级,并使用 selectedIndex 或 selectedChild 属性在页面之间切换。在两者之间绑定 selectedIndex 将自动进行切换。
Look up mx.containers.ViewStack, or mx.containers.TabNavigator.
Basically, you create a bunch of pages as children of ViewStack or TabNavigator, and switch between pages with selectedIndex or selectedChild property. Binding the selectedIndex between the two will automate the switching.