浏览 2061 次
精华帖 (0) :: 良好帖 (0) :: 新手帖 (0) :: 隐藏帖 (0)
|
|
---|---|
作者 | 正文 |
发表时间:2009-06-29
如果用了box来布局所有功能按钮,作为一个工具栏,必须注意它的autoLayout="false" 会影响单独的btn 的隐藏并释放所占空间的功能,所以这个属性切忌不要false. 我今天用单独的btn,都没有问题,就是放到box不行,后来发现是这个属性捣乱。 testbtn后自动隐藏test2并释放所占空间;但是testbtn1控制的box设置了autoLayout属性,test12所占空间没有释放! 示例: private function onclick():void { test2.includeInLayout=false; test3.visible=true; } private function onclick1():void { test12.includeInLayout=false; test13.visible=true; } ... <mx:Button id="testbtn" label="testbtn" width="80" click="onclick()" y="100"> </mx:Button> <mx:Button id="testbtn1" label="testbtn1" width="80" click="onclick1()" x="100" y="100"> </mx:Button> <mx:Box y="120" height="35" width="100%" direction="horizontal" > <mx:Button id="test1" label="test1" width="100" height="30" visible="true" toolTip="test1" /> <mx:Button id="test2" label="test2" width="100" height="30" visible="false" toolTip="test2" /> <mx:Button id="test3" label="test3" width="100" height="30" visible="false" toolTip="test3" /> <mx:Button id="test4" label="test4" width="100" height="30" visible="true" toolTip="test4" /> <mx:ComboBox width="200"> </mx:ComboBox> </mx:Box> <mx:Box y="180" height="35" width="100%" direction="horizontal" horizontalGap="0" autoLayout="false"> <mx:Button id="test11" label="test1" width="100" height="30" visible="true" /> <mx:Button id="test12" label="test2" width="100" height="30" visible="false" /> <mx:Button id="test13" label="test3" width="100" height="30" visible="false" /> <mx:Button id="test14" label="test14" width="100" height="30" visible="true" /> <mx:ComboBox width="200"> </mx:ComboBox> </mx:Box> ... 声明:ITeye文章版权属于作者,受法律保护。没有作者书面许可不得转载。
推荐链接
|
|
返回顶楼 | |