package custom
{
import mx.containers.Canvas;
public class CustomCanvas extends Canvas
{
public function CustomCanvas()
{
super();
}
override protected function commitProperties():void
{
super.commitProperties();
this.setStyle('backgroundColor',0x0055ff);
this.setStyle('borderColor',0x00aaff);
this.setStyle('borderThickness',5);
this.setStyle('borderStyle',"solid");
}
}
}
样式borderThickness不适用。 Iwrong与canvas样式初始化有什么关系?