看图,我现在用的控件是<mx:Form>和FormItem
<mx:Form width="30%">
<mx:FormItem label="名称:{vmnamecn0}" height="12"/>
<mx:FormItem label="内存总量:{vmtotalmemory0}" height="12"/>
<mx:FormItem label="内存平均利用率:{avgmemoryutilization0}" height="12"/>
<mx:FormItem label="内存峰值利用率:{peakmemoryutilization0}" height="12"/>
<mx:FormItem label="磁盘总量:{vmtotalharddisk0}" height="12"/>
<mx:FormItem label="磁盘利用率:{harddiskutilization0}" height="12"/>
<mx:FormItem label="预装软件:{softrequestname0}" height="12"/>
另一种是用HBox
<mx:HBox>
<mx:Label text="名称{vmnamecn1}"/>
</mx:HBox>
<mx:HBox>
<mx:Label text="内存总量:{vmtotalmemory1}"/>
</mx:HBox>
<mx:HBox>
<mx:Label text="内存平均利用率:{avgmemoryutilization1}"/>
</mx:HBox>
<mx:HBox>
<mx:Label text="内存峰值利用率:{peakmemoryutilization1}"/>
</mx:HBox>
<mx:HBox>
<mx:Label text="磁盘总量:{vmtotalharddisk1}"/>
</mx:HBox>
<mx:HBox>
<mx:Label text="磁盘利用率:{harddiskutilization1}"/>
</mx:HBox>
<mx:HBox>
<mx:Label text="预装软件:{softrequestname1}" width="150"/>
</mx:HBox>
想问下HBox方式的话每行之间的间距可以调小吗?或者还有其他使组件换行的东东~
白板的微信
慕莱坞森