main.mxml
- <?xml version="1.0" encoding="utf-8"?>
- <s:Applicationname="Spark_TextInput_contentBackgroundColor_test"
- xmlns:fx="http://ns.adobe.com/mxml/2009"
- xmlns:s="library://ns.adobe.com/flex/spark"
- xmlns:mx="library://ns.adobe.com/flex/halo">
- <mx:ApplicationControlBarwidth="100%" cornerRadius="0">
- <mx:FormstyleName="plain">
- <mx:FormItemlabel="contentBackgroundColor:">
- <mx:ColorPickerid="colorPicker"
- selectedColor="#FFFFFF"/>
- </mx:FormItem>
- </mx:Form>
- </mx:ApplicationControlBar>
- <s:TextInputid="textInput"
- text="The quick brown fox jumps over the lazy dog"
- contentBackgroundColor="{colorPicker.selectedColor}"
- horizontalCenter="0"
- verticalCenter="0"/>
- </s:Application>