嵌套ListBase/itemRenderer?

发布于 2024-11-28 00:30:09 字数 1415 浏览 1 评论 0原文

我在 XAML/WPF 方面很有经验,但对 Flex/Flex4 很陌生。我正在尝试使用 ListBase 和内联 ItemRenderers 构建可动画对象的列表及其动画的子列表。有人可以解释一下为什么内部 ListBase 给出了以下错误,而外部列表却没有?

'spark.components.supportClasses.ItemRenderer' is not assignable to the default property, 'dataProvider', of type 'mx.collections.IList'.

源代码:

<s:ListBase dataProvider="{AnimationList}">
    <s:itemRenderer>
        <fx:Component>
            <s:ItemRenderer>
                <s:VGroup>
                    <s:Label id="labelDisplay"  text="{data.Name}"/>

                    <s:ListBase dataProvider="{data.Animations}">
                        <s:ItemRenderer>
                            <fx:Component>
                                <s:ItemRenderer>
                                    <s:HGroup>
                                        <mx:Button label="play" />
                                        <mx:Label text="{data.Name}"/>
                                    </s:HGroup>
                                </s:ItemRenderer>
                            </fx:Component>
                        </s:ItemRenderer>
                    </s:ListBase>

                </s:VGroup>
            </s:ItemRenderer>

        </fx:Component>
    </s:itemRenderer>
</s:ListBase>

I'm quite experienced in XAML/WPF but am new to Flex/Flex4. I'm trying to build a list of animatable objects with a sub-list of their animations using ListBase and inline ItemRenderers. Can someone shed any light on why the inner ListBase gives me the following error, while the outer list doesn't?

'spark.components.supportClasses.ItemRenderer' is not assignable to the default property, 'dataProvider', of type 'mx.collections.IList'.

The source code:

<s:ListBase dataProvider="{AnimationList}">
    <s:itemRenderer>
        <fx:Component>
            <s:ItemRenderer>
                <s:VGroup>
                    <s:Label id="labelDisplay"  text="{data.Name}"/>

                    <s:ListBase dataProvider="{data.Animations}">
                        <s:ItemRenderer>
                            <fx:Component>
                                <s:ItemRenderer>
                                    <s:HGroup>
                                        <mx:Button label="play" />
                                        <mx:Label text="{data.Name}"/>
                                    </s:HGroup>
                                </s:ItemRenderer>
                            </fx:Component>
                        </s:ItemRenderer>
                    </s:ListBase>

                </s:VGroup>
            </s:ItemRenderer>

        </fx:Component>
    </s:itemRenderer>
</s:ListBase>

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

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

发布评论

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

评论(1

寄居人 2024-12-05 00:30:09

您正在使用 (因此它是分配给 ListBase 的默认属性的 ItemRenderer 类的实例,该属性为 <代码>dataProvider)。我想这是拼写错误,您将使用外部列表中的属性 。看看第一封信的情况。在 ActionScript 中,所有类都以大写字母开头。

You're using <s:ItemRenderer> (so it is an instance of ItemRenderer class assigned to ListBase's default property which is dataProvider). I suppose it is typo and you're going to use property <s:itemRenderer> as in outer list. Take a look at first letter's case. In ActionScript all the classes starts with capitals.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文