如何在 Flex 4 列表中显示网格线?
我是 Flex 4(以及一般的 Flex/AS)的新手。 我正在使用 Spark 列表控件通过自定义项目渲染器显示某些项目。 我正在努力实现以下目标: (1) 在列表控件中的行之间显示分隔线 (2)即使没有添加一行,我也希望在后台显示水平网格线
我不确定(1)和(2)是否可以一次性实现。 我想,我可以通过修改我的项目渲染器以具有边框来解决(1)。但我想知道是否有更好或更传统的方法。
我不知道如何解决(2)。
谢谢!
I am newbie with Flex 4 (and Flex/AS in general).
I am using a spark list control to display certain items with my custom Item Renderer.
I am trying to achieve the following:
(1) show a separating line between rows in my list control
(2) even when not a single row has been added, I want a horizontal grid lines to be displayed in the background
I am not sure whether (1) and (2) can be achieved in one go.
I can solve (1) by modifying my item renderer to have a border, I guess. But I want to know whether there is a better or more conventional way.
I am not sure how to address (2).
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我会像你说的那样,在项目渲染器的底部画一条线。
对于(2),您可以直接在自定义列表皮肤上添加一行,并在设置dataprovider时将其删除
I would do it like you said , drawing a line at the bottom of the item renderer.
As for (2), you could add a line directly on a custom list skin and remove it when the dataprovider is set