使用 CSS 设置 Flex MX ComboBox 背景颜色
有没有办法使用 CSS 设置 mx.controls.ComboBox 的背景颜色。单击(展开)ComboBox
时,这将是每行的背景颜色。我尝试了 backgroundColors
、fillColors
和 backgroundGradientColors
但没有成功。
我的 ComboBox
包含在 FormItem
中。我还尝试设置 FormItem
的 backgroundColor
、fillColors
和 backgroundGradientColors
。我不清楚 ComboBox 从哪里获取或继承其列表单元格背景颜色。
Is there a way using CSS, to set a mx.controls.ComboBox
's background color. This would be the background color of each row when the ComboBox
is clicked (expanded). I've tried backgroundColor
, fillColors
and backgroundGradientColors
without success.
My ComboBox
is contained within a FormItem
. I've also tried setting FormItem
's backgroundColor
, fillColors
and backgroundGradientColors
. It's not clear to me where ComboBox
obtains or inherits its list cell background color from.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您想要设置的是另一个选择器的
dropdownStyleName
(我们称之为“.dropDownStyle”),然后设置backgroundColor
自 组合框实际上由两部分组成。What you want to set is the
dropdownStyleName
to another selector (let's call it '.dropDownStyle') which then sets thebackgroundColor
since the Combobox is actual made out of 2 parts.