Flex Gumbo中如何通过contentBackgroundColor样式设置Spark Panel容器背景颜色的例子
By Minidxer | July 31, 2009
接下来的例子演示了Flex Gumbo中如何通过contentBackgroundColor样式,设置Spark Panel容器背景颜色。
下面是完整代码(或点击这里察看):
下面是main.mxml:
- <?xml version="1.0" encoding="utf-8"?>
- <s:Application name="Spark_Panel_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:Form>
- <mx:FormItem label="contentBackgroundColor:">
- <mx:ColorPicker id="colorPicker"
- selectedColor="white" />
- </mx:FormItem>
- </mx:Form>
- <s:Panel id="panel"
- title="Spark Panel title"
- contentBackgroundColor="{colorPicker.selectedColor}"
- width="300"
- height="200"
- horizontalCenter="0"
- verticalCenter="0">
- <s:RichEditableText id="richEditableTxt"
- text="The quick brown fox jumps over the lazy dog."
- left="10"
- top="10" />
- </s:Panel>
- </s:Application>
代码:Peter deHaan 翻译/整理/编译:中文Flex例子
Topics:
Gumbo, Panel |
No Comments » |
296 views
Tags: contentBackgroundColor, Gumbo