var newHBox:VBox = new VBox();
newHBox['width'] = 20;
newHBox['height'] = 30;
newHBox['backgroundColor'] = "#FF0000";
container.addChild(newHBox);
或者
var newHBox:VBox = new VBox();
newHBox.width = 20;
newHBox.height = 30;
newHBox.backgroundColor = "#FF0000";
container.addChild(newHBox);
我不明白为什么我不能设置backgroundColor
属性,我得到一个错误:
access of possibly undefined property through a reference with static type mx.containers.VBox
如果我使用第一个代码示例,那么没有错误,但是背景颜色仍然不适用,styleName
适用的很好,你能告诉我为什么背景颜色不能设置吗?