Mega Code Archive

 
Categories / Flex / Components
 

Contact Manager Panel with TextInput, NumericStepper, CheckBox, ColorPicker

<?xml version="1.0" encoding="utf-8"?> <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute">     <mx:Panel x="10" y="10" layout="vertical" title="Contact" paddingLeft="5" width="200" height="300">         <mx:Label text="First Name" fontWeight="bold" />         <mx:TextInput id="firstNameTextInput" />         <mx:Label text="Last Name" fontWeight="bold" />         <mx:TextInput id="lastNameTextInput" />         <mx:Label id="ageLabel" text="Age" fontWeight="bold" />         <mx:NumericStepper id="ageNS" maximum="120" minimum="18" />         <mx:CheckBox id="dogsCheckBox" label="Likes Dogs" />         <mx:Label text="Favorite Color" fontWeight="bold" />         <mx:ColorPicker id="favoriteColorPicker" selectedColor="#FFFFFF" />     </mx:Panel> </mx:Application>