当前位置:  开发笔记 > 前端 > 正文

如何在CSS中将RadioButton图标样式设置为空(在Flex 3中)?

如何解决《如何在CSS中将RadioButton图标样式设置为空(在Flex3中)?》经验,为你挑选了1个好方法。

您可以通过在CSS中设置以下值来为Flex中的RadioButton设置外观:

upSkin: Embed(...); 
overSkin: Embed(...);
ownSkin: Embed(...);
disabledSkin: Embed(...);
selectedUpSkin: Embed(...);
selectedOverSkin: Embed(...);
selectedDownSkin: Embed(...);
selectedDisabledSkin: Embed(...);

但是,它仍将在您的皮肤内显示小圆圈图标.您可以通过设置以下样式来更改图标:

upIcon: Embed(...);
overIcon: Embed(...);
etc...

我的问题是,如何将这些图标设置为空?而不是1x1像素透明图像或什么?我怎么能给它一个空的风格?

编辑:

在动作中我可以这样做:

button.setStyle("icon", null);

在CSS中我试过:

icon: none;
icon: null;

但都没有奏效.

一般承认的答案:

建议一和二都工作,但我更喜欢更清洁的解决方案:

upIcon: ClassReference(null);

感谢您的回答(希望我能将两者都标记为答案!)



1> cliff.meyers..:

试试这个:

ClassReference(null);

推荐阅读
coco2冰冰
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有