如何判断SkinnableComponent是否已经完成添加部件?

发布于 2024-12-25 07:35:47 字数 161 浏览 0 评论 0原文

美好的一天,

有谁知道是否有办法确定何时添加 SkinnableComponent 对象的所有部分?这个问题的背景如下:

我有一个自定义的可换肤组件类,一旦创建它就需要更新它的一些部分(例如更改一些标签),这意味着一旦所有皮肤部分都已实例化和添加。

提前致谢,

Good day,

Does anyone know if there is a way to determine when all the parts of a SkinnableComponent object have been added? The context of this problem is the following:

I have a custom skinnable component class which needs to update some of its parts (e.g. change some labels) once it has been created, meaning once all the skin parts have been instantiated and added.

Thanks in advance,

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

丑丑阿 2025-01-01 07:35:47

常见的解决方案是重写 partAdded(partName:String, instance:Object):void 并在创建部件时对其进行修改。

override protected function partAdded(partName:String, instance:Object):void 
{
    super.partAdded(partName, instance);
    if (instance == myLabel)
    {
        myLabel.text = getText();
    }
}

The common solution is to override partAdded(partName:String, instance:Object):void and to modify the parts when they are created.

override protected function partAdded(partName:String, instance:Object):void 
{
    super.partAdded(partName, instance);
    if (instance == myLabel)
    {
        myLabel.text = getText();
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文