| <?xml version="1.0" encoding="utf-8"?> |
| <!-- |
| |
| Licensed to the Apache Software Foundation (ASF) under one or more |
| contributor license agreements. See the NOTICE file distributed with |
| this work for additional information regarding copyright ownership. |
| The ASF licenses this file to You under the Apache License, Version 2.0 |
| (the "License"); you may not use this file except in compliance with |
| the License. You may obtain a copy of the License at |
| |
| http://www.apache.org/licenses/LICENSE-2.0 |
| |
| Unless required by applicable law or agreed to in writing, software |
| distributed under the License is distributed on an "AS IS" BASIS, |
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| See the License for the specific language governing permissions and |
| limitations under the License. |
| |
| --> |
| <s:SkinnableContainer xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:mx="library://ns.adobe.com/flex/mx" xmlns:s="library://ns.adobe.com/flex/spark" xmlns:local="*"> |
| <s:layout> |
| <s:BasicLayout /> |
| </s:layout> |
| <mx:Box id="checkbox_box" paddingRight="5" paddingLeft="5" paddingTop="5" paddingBottom="5" > |
| <s:CheckBox label="FxCheckBox" id="checkbox1" selected="true" /> |
| </mx:Box> |
| <mx:Box id="hslider_box" paddingRight="5" paddingLeft="5" paddingTop="5" paddingBottom="5" > |
| <s:HSlider maximum="20" minimum="0" id="hslider1" /> |
| </mx:Box> |
| <mx:Box id="vslider_box" paddingRight="5" paddingLeft="5" paddingTop="5" paddingBottom="5" > |
| <s:VSlider maximum="20" minimum="0" id="vslider1" /> |
| </mx:Box> |
| <mx:Box id="list_box" paddingRight="5" paddingLeft="5" paddingTop="5" paddingBottom="5" > |
| <s:List id="list1" selectedIndex="1" dataProvider="{new mx.collections.ArrayCollection(['J_an', 'Jac_b', 'R_b', 'J_ann', 'Lauren', 'Ella'])}" /> |
| </mx:Box> |
| <mx:Box id="buttonbar_box" paddingRight="5" paddingLeft="5" paddingTop="5" paddingBottom="5" > |
| <s:ButtonBar id="buttonbar1" dataProvider="{new mx.collections.ArrayCollection(['Christmas', 'Hannukah', 'Kwanza', 'Snowman'])}" /> |
| </mx:Box> |
| |
| <s:HScrollBar maximum="10" minimum="0" id="hscrollbar1"/> |
| <s:Rect id="border2" left="0" right="0" top="0" bottom="0"> |
| <s:stroke> |
| <s:SolidColorStroke color="0x0000FF"/> |
| </s:stroke> |
| </s:Rect> |
| </s:SkinnableContainer> |