等同于Flex中的Parent parentDocument

sirbozc5  于 2022-09-21  发布在  Apache
关注(0)|答案(1)|浏览(230)

我必须将Flex代码转换为ApacheRoyale代码,但在我的研究中,有一个属性我找不到对应的属性。

在Flex中,要从父mxml调用actionScipt函数,我必须:

<mx:Button label="Login" click="parentDocument.myfunction()"/>

我在研究过程中发现了parentComponent,但我有访问可能未定义的属性parentComponent错误的权限。

我也只尝试了‘Parent’,错误变成通过静态类型IParent的引用调用可能未定义的方法verif_sharedObject。

我对IParent,Container和Group(来自JEWEL)做了一些研究,但目前还没有成功

j7dteeu8

j7dteeu81#

请检查Core库中的ParentDocumentBead磁珠。

来自阿斯多克:


* The ParentDocumentBead class looks up the parent

     *  chain to find a parent that was written in MXML.
     *  Because it is usually rare for an application
     *  to need to know this information, an optional bead
     *  is used to compute it, instead of baking in the
     *  overhead of a recursive infrastucture to store
     *  this information.  It is intended to be used
     *  as a bead in the top-level tag of an MXML document.

HTH

相关问题