重新创建 Flex 3 场景
有谁知道如何重置/重新初始化 Flex 3 中的状态?
假设我有以下代码:
<mx:states>
<mx:State name="Scene1">
<mx:AddChild>
<Scenes:Scene1 id="scene1"></Scenes:Scene1>
</mx:AddChild>
</mx:State>
<mx:State name="Scene2">
<mx:AddChild>
<Scenes:Scene2 id="scene2" models="{models}"></Scenes:Scene2>
</mx:AddChild>
</mx:State>
</mx:states>
每次我从 1 到 2 或 2 到 1 时,我不想重新创建整个状态。
Does anyone know how i can reset/reinitialize a state in flex 3?
Let's say I have the following code:
<mx:states>
<mx:State name="Scene1">
<mx:AddChild>
<Scenes:Scene1 id="scene1"></Scenes:Scene1>
</mx:AddChild>
</mx:State>
<mx:State name="Scene2">
<mx:AddChild>
<Scenes:Scene2 id="scene2" models="{models}"></Scenes:Scene2>
</mx:AddChild>
</mx:State>
</mx:states>
And every time i go from 1 to 2 or 2 to 1, I wan't to recreate the entire State.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不确定这就是您正在寻找的内容,但是此代码将呈现您在上面定义的状态:
这就是您正在寻找的内容吗?
I am not certain this is what you are looking for, but this code will render the states you have defined above:
Is that what you were looking for?