Flex容器最大化

若有左右布局的2个容器,左侧容器宽:20%,右侧容器宽:80%,若想让右侧容器最大化,则采用如下方法:

private function maxsizeHandler(ev:Event):void{
				if(this.leftBox.percentWidth==0){
					this.leftBox.percentWidth=20;
					this.rightBox.percentWidth=80;
				}else{
					this.leftBox.percentWidth=0;
					this.rightBox.percentWidth=100;
				}
			}

 其中leftBox为左侧容器的id,rightBox为右侧容器的id。

你可能感兴趣的:(Flex)