以编程方式对 Flex 列表组件的翻转指示器进行皮肤处理
有谁知道如何将自定义翻转指示器皮肤添加到 Flex 3 列表组件中? 它的 CSS 中没有 rolloveridicatorskin。
Does anybody know how to add custom rolloveridicatorskins to a flex 3 list component?
it doesn't have the rolloveridicatorskin in the css.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您只想更改所显示项目的背景和文本颜色,则 ListBase 类定义了以下样式:
rollOverColor
0xEEFEE6
。textRollOverColor
例如:
当您将鼠标移到某个项目上时,将在红色背景上显示黄色文本(!)。
If you just want to change the background and text colors of the items displayed, the ListBase class defines the following styles:
rollOverColor
0xEEFEE6
.textRollOverColor
So something like:
Will give you yellow text over red background(!) when you move the mouse over an item.
这是代码。
Here is the code.