新窗口/查看 mxml flex
我遇到以下如何将另一个 mxml 文件显示为应用程序主视图的问题
例如,假设我将 main.mxml
显示为主窗口。当我单击按钮时,我想显示另一个 mxml 文件,例如 newMain.mxml
并关闭 main.mxml
I have the following problem of how to display another mxml file as main view of application
For example, lets say I have main.mxml
displaying as main window. When I click button I want to display another mxml file lets say newMain.mxml
and close main.mxml
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,您可以通过使用 Adobe AIR 中的 NativeWindow 类来实现。
您可以创建本机窗口并可以激活它。
在将 newMain.mxml 激活到另一个本机窗口时,您可以将 main.mxml 设置为可见 false。
当关闭 newMain.mxml 时,您可以将 main.mxml 设置为可见 true。
我提供了一些示例 Flex 4.5 应用程序代码。
Yes, you can do it by using NativeWindow Class in Adobe AIR.
You can create native window and can activate it.
While activating your newMain.mxml into another native window you can set your main.mxml to visible false.
And when closing your newMain.mxml you can set main.mxml to visible true.
I am giving some sample Flex 4.5 Application Code.