将TabNavigator从Flex 3迁移到Flex 4.5时出现问题。剥离到最低限度,以下代码将产生错误,即TabNavigator的第二个子项无法正确创建:
<?xml version="1.0" encoding="utf-8"?>
<s:Application
xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"
xmlns:mx="library://ns.adobe.com/flex/mx"
>
<fx:Script>
<![CDATA[
protected function over():void
{
trace('over');
}
protected function content_one_init():void
{
content_one.enabled = true;
navigator.selectedIndex = 1;
}
]]>
</fx:Script>
<mx:TabNavigator
id="navigator"
creationPolicy="auto"
width="100%" height="100%"
>
<mx:VBox
id="content_one"
enabled="false"
creationComplete="content_one_init()"
label="One"
mouseOver="over()"
/>
<mx:VBox label="Two">
<mx:Label text="Content Two" />
</mx:VBox>
</mx:TabNavigator>
</s:Application>
我在启动时看到的是一个TabNavigator,它选择了第二个标签,但没有内容而不是预期的“内容二”标签。 navigator.selectedIndex = 1;
指令只是为了舒适,如果您在启动后用鼠标选择第二个选项卡,也会出现错误。
现在有趣的是:如果我执行以下任何操作,则会创建第二个孩子:
creationPolicy="all"
(这是预期的),content_one.enabled = true
,enabled="false"
,mouseOver="over()"
(这个真的很奇怪,因为处理程序永远不会被调用)这真的是一个Flex错误,还是我缺少的东西?我使用的是Flex 4.5.0.20967,所有这些都在Flex 3.5中运行良好。
感谢。