Flex Builder:我想从 titleWindow 转到面板
我正在构建一个用户登录页面,我想从 titleWindow 转到面板。 我正在使用以下函数,但它总是带我回到parentApplication。
我的问题是如何转到我的面板而不是应用程序页面?
我知道我正在使用parentApplication,但我应该使用什么?
这是我的代码的一部分:
private function handleLogin(event:ResultEvent):void {
Alert.show("You have succesfully logged in.", "Information", Alert.OK, null, null, null, Alert.OK);
parentApplication.accountPage.mainService.getAccount();
PopUpManager.removePopUp(this);
}
I'm building a user login page and I want to go from titleWindow to Panel.
I'm using the following function but it always takes me back to parentApplication.
My question is how can I go to my panel and not to Application page?
I know that I'm using parentApplication but what should I use instead?
Here is a part of my code:
private function handleLogin(event:ResultEvent):void {
Alert.show("You have succesfully logged in.", "Information", Alert.OK, null, null, null, Alert.OK);
parentApplication.accountPage.mainService.getAccount();
PopUpManager.removePopUp(this);
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用父容器来保存一些
child-mxml
,则可以在父容器和子容器之间建立连接,如下所示:在当前处于后台的页面上工作或在我在一个页面上收集一些数据,然后将其发送到另一页面,然后再将其显示在用户面前。
If you are using a parent container to hold some
child-mxmls
, you can establish connections between the parent and children like this:I always use this linking when working on a page that is currently in background or when I collect some data on one page and send it to the other page before it comes up in front of the user.