| <s:Panel |
| xmlns:fx="http://ns.adobe.com/mxml/2009" |
| xmlns:mx="library://ns.adobe.com/flex/mx" |
| xmlns:s="library://ns.adobe.com/flex/spark" |
| toolTip="This is the Panel toolTip" |
| right="50" bottom="25"> |
| |
| <s:layout> <s:VerticalLayout/> </s:layout> |
| |
| <mx:HBox> |
| <mx:Button id="myButton" label="Halo Button"/> |
| <s:Button id="myFxButton" label="FxButton"/> |
| </mx:HBox> |
| |
| <mx:Label text="Halo Label"/> |
| <mx:Text text="Halo Text"/> |
| |
| <mx:HSlider id="myHSlider"/> |
| <s:HSlider id="myFxHSlider"/> |
| |
| <mx:HBox> |
| <mx:RadioButton id="myRB1" groupName="rbg1" label="Option 1"/> |
| <mx:RadioButton id="myRB2" groupName="rbg1" label="Option 2"/> |
| <mx:RadioButton id="myRB3" groupName="rbg1" label="Option 3"/> |
| </mx:HBox> |
| |
| <s:BitmapImage id="myPic" width="100" height="100" source="@Embed('../../../../../../Assets/Images/smallorangerect.gif')" fillMode="repeat"/> |
| |
| <s:Ellipse id="myEllipse" height="50" width="50"> |
| <s:fill> |
| <mx:SolidColor color="0x0000FF"/> |
| </s:fill> |
| </s:Ellipse> |
| |
| <mx:CheckBox id="myCB" label="This is a Halo CheckBox"/> |
| |
| </s:Panel> |