在Air应用程序中创建新窗口
如何在 Air Project 中创建新窗口(同一应用程序重复)。任何人帮助谢谢。
how to create new window(same application duplicate) in Air Project. Any one Help thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 mx:Window,将代码从 mx:WindowedApplication 中取出,并将其放入可重用的 Canvas 中。将其实例放回 mx:WindowApplication 中,然后您可以创建一个新的 mx:Window 并在其中添加可重用的 Canvas 组件。
在名为 YourComponent.mxml 的单独文件中:
Use mx:Window, and take your code out of mx:WindowedApplication and put it into a reusable Canvas. The put an instance of that back in mx:WindowApplication, and then you can create a new mx:Window and add your reusable Canvas component in there as well.
In a separate file called YourComponent.mxml: