有没有办法在'editable'属性设置为false的情况下更改flex程序中所有textinput和textarea组件的样式(背景颜色)?
由于
答案 0 :(得分:2)
由于没有特定的样式,您必须创建自定义外观。只需按照以下步骤操作:
spark.skins.spark.TextInputSkin
中的所有代码复制到新类中。updateDisplayList()
方法,并根据主机组件的editable
属性对皮肤类应用必要的更改。例如:
override protected function updateDisplayList(
unscaledWidth:Number, unscaledHeight:Number):void {
super.updateDisplayList(unscaledWidth, unscaledHeight);
//when editable the background will be red and otherwise it'll be blue
background.color = hostComponent.editable ? 0xff0000 : 0x0000ff;
}
@namespace s "library://ns.adobe.com/flex/spark";
s|TextInput {
skinClass: ClassReference("my.skins.MyTextInputSkin");
}
你可以通过做以下事情来使其更具通用性 在updateDisplayList()方法中:
override protected function updateDisplayList(
unscaledWidth:Number, unscaledHeight:Number):void {
super.updateDisplayList(unscaledWidth, unscaledHeight);
var bgColorStyle:String = "backgroundColor";
if (!hostComponent.editable) = "nonEditableBackgroundColor";
background.color = getStyle(bgColorStyle);
}
在CSS中:
@namespace s "library://ns.adobe.com/flex/spark";
s|TextInput {
skinClass: ClassReference("my.skins.MyTextInputSkin");
backGroundColor: #ff0000;
nonEditableBackgroundColor: #0000ff;
}
通过这种方式,您可以在任何地方重复使用自定义皮肤,并通过样式应用不同的颜色
请注意,您将无法通过MXML设置nonEditableBackgroundColor
,因为主机组件的元数据中没有声明该样式。这不适用于backGroundColor
,因为它是默认样式,并在TextInput的元数据中声明。