Flex:创建自定义列表组件

发布于 2024-10-11 11:45:09 字数 310 浏览 5 评论 0原文

我正在尝试扩展 mx:Box 容器,以便两个按钮位于容器的外部以循环浏览其内容(类似于滚动条)。

我制作了一个自定义组件,看起来基本上 例如“mx:HBox->mx:Button mx:Box mx:Button”,其中按钮和框是 hbox 的子项。

如何通过我的自定义组件向用户提供对框(例如其 dataProvider 和 itemRenderer)的访问?

所以他们只需要编写 'local:MyCustomComponent dataProvider="rar" itemRenderer="rar"/>'我的盒子里面那个组件可以用吗?

I'm trying to extend the mx:Box container so that two buttons sit on the outside of the container to cycle through it's contents (similar to a scrollbar).

I've made a custom component that looks basically
like "mx:HBox->mx:Button mx:Box mx:Button" where the buttons and box are children of the hbox.

How do I offer the user access to the box (say its dataProvider and itemRenderer) through my custom component?

So they just need to write 'local:MyCustomComponent dataProvider="rar" itemRenderer="rar"/>' and my box inside that component can use it?

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

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

发布评论

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

评论(1

我也只是我 2024-10-18 11:45:09

创建代理 List 组件属性的 getter 和 setter。

IE:

private function set dataProvider(value:Object):void
{
 list.dataProvider = value;
}

Create getter and setters that proxy the properties of your List component.

i.e:

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