如何在flex3中从一个mxml导航到另一个mxml
假设我的 main.mxml 上有 3 个按钮(例如,生产、营销、销售)。 一旦我单击一个按钮,它应该将我带到包含生产数据的 abc.mxml 页面,如果我再次单击第二个按钮,它应该将我带到相同的 abc.mxml 但包含营销数据。与第三个按钮也相同,
我怎样才能实现这一点?
suppose i have 3 buttons(for example say, productin, marketing, sales ) on my main.mxml..
once i click on one button it should take me to abc.mxml page with production data, once again if i click on second button it should take me to the same abc.mxml but with marketing data. same as for 3rd button also,
how can i achieve this ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 TabNavigator
代码是从链接复制的页;检查页面以获取现场演示。
Use a TabNavigator
The code is copied from the linked page; check the page for a live demo.
您可以使用 TabNavigator 来使用选项卡并将所有 3 个 mxml 包含在其中
http://livedocs.adobe.com/flex/ 3/html/help.html?content=navigators_4.html
您可以使用 ViewStack,其中包含所有 3 个 mxml,然后在按钮上单击您设置 viewstack 的 selectedIndes = "0" 、 1 或 2,具体取决于在按钮上。
http://livedocs.adobe.com/flex/ 3/html/help.html?content=navigators_3.html
另外,您可能需要检查“Navigator Containers”的 adobe flex 帮助
you can user tabs with TabNavigator and inclide all 3 mxml's inside it
http://livedocs.adobe.com/flex/3/html/help.html?content=navigators_4.html
you can use a ViewStack where you include all 3 mxml's and on your buttons click you set the viewstack's selectedIndes = "0" , 1 or 2 depending on the button.
http://livedocs.adobe.com/flex/3/html/help.html?content=navigators_3.html
Also you may want to check adobe flex help for "Navigator Containers"