我有一个图像,其源代码依赖于另一个对象的可绑定属性。 我想知道这个源何时发生变化,例如,通过捕获绑定事件或Image控件的其他相关事件。
提前致谢。
答案 0 :(得分:0)
有几种方法可以做到这一点。一个是使用Bindsetter
private function creationComplete(event:FlexEvent):void{
BindingUtils.bindSetter(changeImage,hostObject,"image"); //assuming hostObject contains the property "image"
}
private function changeImage(imageSource:String){
//Set the image in here... do whatever else you wanted to do.
}