????????? spark中的滚动条不会像mx中自动的出现,但是可以通过Scroller添加滚动条。
????????? 下面的代码功能是对panel添加滚动条。
??????????
<s:Panel title="表单" width="400" height="300" id="panel" > <s:layout > <s:VerticalLayout/> </s:layout> <s:Scroller width="100%" height="100%"> <s:VGroup left="20" right="20" top="20" bottom="20" height="100%"> <s:TextInput height="310" width="100%" text="内容区域可以出现滚动条"/> </s:VGroup> </s:Scroller> <s:controlBarLayout> <s:HorizontalLayout paddingLeft="12" gap="5" /> </s:controlBarLayout> <s:controlBarContent> <s:HGroup width="100%" height="40" verticalAlign="middle" horizontalAlign="right" gap="10" paddingRight="5"> <s:Label text="固定在Panel的最下方"/> <s:Button label="确定"/> <s:Button label="取消"/> </s:HGroup> </s:controlBarContent> </s:Panel>
?
??? 效果图如下:
???
?
?
?
?