Flex Gumbo中如何通过contentBackgroundColor样式设置TextInput背景颜色的例子
By Minidxer | July 19, 2009
接下来的例子演示了Flex Gumbo中如何通过contentBackgroundColor样式,设置TextInput背景颜色。
下面是完整代码(或点击这里察看):
Download: main.mxml
- <?xml version="1.0" encoding="utf-8"?>
- <s:Application name="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:ApplicationControlBar width="100%" cornerRadius="0">
- <mx:Form styleName="plain">
- <mx:FormItem label="contentBackgroundColor:">
- <mx:ColorPicker id="colorPicker"
- selectedColor="white" />
- </mx:FormItem>
- </mx:Form>
- </mx:ApplicationControlBar>
- <s:TextInput id="textInput"
- text="The quick brown fox jumps over the lazy dog."
- contentBackgroundColor="{colorPicker.selectedColor}"
- horizontalCenter="0"
- verticalCenter="0" />
- </s:Application>
代码:Peter deHaan 翻译/整理/编译:中文Flex例子
Topics:
Gumbo, TextInput |
No Comments » |
Tags: contentBackgroundColor, Gumbo