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
如果我使用第一个代码示例,那么没有错误,但backgroundColor仍然不适用,styleName
适用得很好,你能告诉我为什么无法设置backgroundColor吗? / p>
答案 0 :(得分:1)
backgroundColor是样式属性,因此您应该使用:
newHBox.setStyle("backgroundColor", 0xFF0000);