flex uicomponent.addChild(Button) Button不显示

设置下Button的宽度和高度就行了

 

var ui:UIComponent=new UIComponent;
                ui.minWidth=20;
                ui.minHeight=20;
                var button:Button=new Button;
//                button.initialize()
//                var s:SystemManager
//                var sss:LayoutManager
                ui.addChild(button);
                button.styleChanged(
                this.addChild(ui);
                button.width=20; //设置高度和宽度
                button.height=25;
                button.minWidth;
                button.minHeight
                trace(button.width+":"+button.height+":"+button.x+":"+button.y);
                mx.controls.Alert.show("init");

你可能感兴趣的:(UI,Flex)