Mega Code Archive

 
Categories / Flex / Graphics
 

Sub Component Inheritance for font size style

<?xml version="1.0"?> <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml">     <mx:Style>        .TextInput {            fontSize:15;         }     </mx:Style>     <mx:RichTextEditor />     <mx:ComboBox>         <mx:dataProvider>             <mx:String>2005</mx:String>             <mx:String>2006</mx:String>             <mx:String>2007</mx:String>         </mx:dataProvider>     </mx:ComboBox>     <mx:NumericStepper /> </mx:Application>