在 MXML 中,当我将组件添加到ViewStack
和creationPolicy
isauto
时,组件在我切换到它们之前不会被实例化。说,我有以下代码:
<mx:ViewStack creationPolicy="auto">
<s:NavigatorContent>
<s:DataGrid id="dg1" width="300"/>
</s:NavigatorContent>
<s:NavigatorContent>
<s:DataGrid id="dg2" width="100"/>
</s:NavigatorContent>
</mx:ViewStack>
如何在 ActionScript 中复制此行为?问题是我的 DataGrids 包含大量数据,因此我不希望同时创建它们。