<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>中文Flex例子 &#187; contentBackgroundColor</title>
	<atom:link href="http://blog.minidx.com/tag/contentbackgroundcolor/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.minidx.com</link>
	<description>中文Adobe Flex例子,Flex实例教程,RIA资源,全文检索技术,算法和数据结构</description>
	<lastBuildDate>Thu, 31 Mar 2011 03:22:33 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Flex 4中如何设置Halo DataGrid背景颜色的例子</title>
		<link>http://blog.minidx.com/2009/11/01/3011.html</link>
		<comments>http://blog.minidx.com/2009/11/01/3011.html#comments</comments>
		<pubDate>Sun, 01 Nov 2009 14:32:35 +0000</pubDate>
		<dc:creator>Minidxer</dc:creator>
				<category><![CDATA[DataGrid]]></category>
		<category><![CDATA[Gumbo]]></category>
		<category><![CDATA[alternatingItemColors]]></category>
		<category><![CDATA[contentBackgroundColor]]></category>

		<guid isPermaLink="false">http://blog.minidx.com/?p=3011</guid>
		<description><![CDATA[接下来的例子演示了Flex 4中如何通过contentBackgroundColor和alternatingItemColors样式，设置Halo DataGrid背景颜色。
让我们先来看一下Demo（可以点击这里察看源代码）：









下面是完整代码(或点击这里察看)：
下面是main.mxml：
&#60;?xml version=&#34;1.0&#34; encoding=&#34;utf-8&#34;?&#62;
&#60;s:Application&#160;name=&#34;Halo_DataGrid_contentBackgroundColor_test&#34;
&#160; &#160; &#160; &#160; xmlns:fx=&#34;http://ns.adobe.com/mxml/2009&#34;
&#160; &#160; &#160; &#160; xmlns:s=&#34;library://ns.adobe.com/flex/spark&#34;
&#160; &#160; &#160; &#160; xmlns:mx=&#34;library://ns.adobe.com/flex/halo&#34;&#62;
&#160;
&#160; &#160; &#60;mx:ApplicationControlBar&#160;width=&#34;100%&#34; cornerRadius=&#34;0&#34;&#62;
&#160; &#160; &#160; &#160; &#60;mx:Form&#160;styleName=&#34;plain&#34;&#62;
&#160; &#160; &#160; &#160; &#160; &#160; &#60;mx:FormItem&#160;label=&#34;contentBackgroundColor:&#34;&#62;
&#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#60;mx:ColorPicker&#160;id=&#34;colorPicker&#34;
&#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; selectedColor=&#34;white&#34;&#160;/&#62;
&#160; &#160; &#160; &#160; &#160; &#160; [...]]]></description>
		<wfw:commentRss>http://blog.minidx.com/2009/11/01/3011.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flex 4中如何通过contentBackgroundColor样式设置Halo TextArea背景填充颜色的例子</title>
		<link>http://blog.minidx.com/2009/10/13/2973.html</link>
		<comments>http://blog.minidx.com/2009/10/13/2973.html#comments</comments>
		<pubDate>Tue, 13 Oct 2009 13:23:07 +0000</pubDate>
		<dc:creator>Minidxer</dc:creator>
				<category><![CDATA[Gumbo]]></category>
		<category><![CDATA[TextArea]]></category>
		<category><![CDATA[backgroundColor]]></category>
		<category><![CDATA[contentBackgroundColor]]></category>

		<guid isPermaLink="false">http://blog.minidx.com/?p=2973</guid>
		<description><![CDATA[接下来的例子演示了Flex 4中如何通过contentBackgroundColor样式（Flex 3或者早期版本中是 backgroundColor  样式），设置Halo TextArea背景填充颜色。
让我们先来看一下Demo（可以点击这里察看源代码）：









下面是完整代码(或点击这里察看)：
下面是main.mxml：
&#60;?xml version=&#34;1.0&#34; encoding=&#34;utf-8&#34;?&#62;
&#60;s:Application&#160;name=&#34;TextArea_SparkSkin_contentBackgroundColor_test&#34;
&#160; &#160; &#160; &#160; xmlns:fx=&#34;http://ns.adobe.com/mxml/2009&#34;
&#160; &#160; &#160; &#160; xmlns:s=&#34;library://ns.adobe.com/flex/spark&#34;
&#160; &#160; &#160; &#160; xmlns:mx=&#34;library://ns.adobe.com/flex/halo&#34;&#62;
&#160;
&#160; &#160; &#60;mx:ApplicationControlBar&#160;width=&#34;100%&#34; cornerRadius=&#34;0&#34;&#62;
&#160; &#160; &#160; &#160; &#60;mx:Form&#160;styleName=&#34;plain&#34;&#62;
&#160; &#160; &#160; &#160; &#160; &#160; &#60;mx:FormItem&#160;label=&#34;contentBackgroundColor:&#34;&#62;
&#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#60;mx:ColorPicker&#160;id=&#34;colorPicker&#34;
&#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; selectedColor=&#34;white&#34;&#160;/&#62;
&#160; &#160; [...]]]></description>
		<wfw:commentRss>http://blog.minidx.com/2009/10/13/2973.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flex Gumbo中如何通过contentBackgroundColor样式设置DropDownList内容背景颜色的例子</title>
		<link>http://blog.minidx.com/2009/08/17/2843.html</link>
		<comments>http://blog.minidx.com/2009/08/17/2843.html#comments</comments>
		<pubDate>Sun, 16 Aug 2009 23:53:27 +0000</pubDate>
		<dc:creator>Minidxer</dc:creator>
				<category><![CDATA[DropDownList]]></category>
		<category><![CDATA[Gumbo]]></category>
		<category><![CDATA[contentBackgroundColor]]></category>

		<guid isPermaLink="false">http://blog.minidx.com/?p=2843</guid>
		<description><![CDATA[接下来的例子演示了Flex Gumbo中如何通过contentBackgroundColor样式，设置DropDownList内容背景颜色。 
让我们先来看一下Demo（可以点击这里察看源代码）：









下面是完整代码(或点击这里察看)：
下面是main.mxml：
&#60;?xml version=&#34;1.0&#34; encoding=&#34;utf-8&#34;?&#62;
&#60;s:Application&#160;name=&#34;Spark_DropDownList_contentBackgroundColor_test&#34;
&#160; &#160; &#160; &#160; xmlns:fx=&#34;http://ns.adobe.com/mxml/2009&#34;
&#160; &#160; &#160; &#160; xmlns:s=&#34;library://ns.adobe.com/flex/spark&#34;
&#160; &#160; &#160; &#160; xmlns:mx=&#34;library://ns.adobe.com/flex/halo&#34;&#62;
&#160;
&#160; &#160; &#60;mx:ApplicationControlBar&#160;width=&#34;100%&#34; cornerRadius=&#34;0&#34;&#62;
&#160; &#160; &#160; &#160; &#60;mx:Form&#160;styleName=&#34;plain&#34;&#62;
&#160; &#160; &#160; &#160; &#160; &#160; &#60;mx:FormItem&#160;label=&#34;contentBackgroundColor:&#34;&#62;
&#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#60;mx:ColorPicker&#160;id=&#34;colorPicker&#34; selectedColor=&#34;white&#34; /&#62;
&#160; &#160; &#160; &#160; &#160; &#160; &#60;/mx:FormItem&#62;
&#160; &#160; &#160; &#160; &#60;/mx:Form&#62;
&#160; &#160; &#60;/mx:ApplicationControlBar&#62;
&#160;
&#160; &#160; &#60;s:DropDownList&#160;id=&#34;dropDownList&#34;
&#160; &#160; [...]]]></description>
		<wfw:commentRss>http://blog.minidx.com/2009/08/17/2843.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Flex Gumbo中如何通过中如何通过contentBackgroundColor样式如何设置NumericStepper内容背景颜色的例子</title>
		<link>http://blog.minidx.com/2009/08/03/2803.html</link>
		<comments>http://blog.minidx.com/2009/08/03/2803.html#comments</comments>
		<pubDate>Mon, 03 Aug 2009 15:01:06 +0000</pubDate>
		<dc:creator>Minidxer</dc:creator>
				<category><![CDATA[FxNumericStepper]]></category>
		<category><![CDATA[Gumbo]]></category>
		<category><![CDATA[contentBackgroundColor]]></category>

		<guid isPermaLink="false">http://blog.minidx.com/?p=2803</guid>
		<description><![CDATA[接下来的例子演示了Flex Gumbo中如何通过中如何通过contentBackgroundColor样式，如何设置NumericStepper内容背景颜色。 
让我们先来看一下Demo（可以点击这里察看源代码）：









下面是完整代码(或点击这里察看)：
下面是main.mxml：
&#60;?xml version=&#34;1.0&#34; encoding=&#34;utf-8&#34;?&#62;
&#60;s:Application&#160;name=&#34;Spark_NumericStepper_contentBackgroundColor_test&#34;
&#160; &#160; &#160; &#160; xmlns:fx=&#34;http://ns.adobe.com/mxml/2009&#34;
&#160; &#160; &#160; &#160; xmlns:s=&#34;library://ns.adobe.com/flex/spark&#34;
&#160; &#160; &#160; &#160; xmlns:mx=&#34;library://ns.adobe.com/flex/halo&#34;&#62;
&#160;
&#160; &#160; &#60;mx:ApplicationControlBar&#160;width=&#34;100%&#34; cornerRadius=&#34;0&#34;&#62;
&#160; &#160; &#160; &#160; &#60;mx:Form&#160;styleName=&#34;plain&#34;&#62;
&#160; &#160; &#160; &#160; &#160; &#160; &#60;mx:FormItem&#160;label=&#34;contentBackgroundColor:&#34;&#62;
&#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#60;mx:ColorPicker&#160;id=&#34;colorPicker&#34;
&#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; selectedColor=&#34;white&#34;&#160;/&#62;
&#160; &#160; &#160; &#160; &#160; &#160; [...]]]></description>
		<wfw:commentRss>http://blog.minidx.com/2009/08/03/2803.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flex Gumbo中如何通过contentBackgroundColor样式设置Spark Panel容器背景颜色的例子</title>
		<link>http://blog.minidx.com/2009/07/31/2797.html</link>
		<comments>http://blog.minidx.com/2009/07/31/2797.html#comments</comments>
		<pubDate>Fri, 31 Jul 2009 14:30:55 +0000</pubDate>
		<dc:creator>Minidxer</dc:creator>
				<category><![CDATA[Gumbo]]></category>
		<category><![CDATA[Panel]]></category>
		<category><![CDATA[contentBackgroundColor]]></category>

		<guid isPermaLink="false">http://blog.minidx.com/?p=2797</guid>
		<description><![CDATA[接下来的例子演示了Flex Gumbo中如何通过contentBackgroundColor样式，设置Spark Panel容器背景颜色。 
让我们先来看一下Demo（可以点击这里察看源代码）：









下面是完整代码(或点击这里察看)：
下面是main.mxml：
&#60;?xml version=&#34;1.0&#34; encoding=&#34;utf-8&#34;?&#62;
&#60;s:Application&#160;name=&#34;Spark_Panel_contentBackgroundColor_test&#34;
&#160; &#160; &#160; &#160; xmlns:fx=&#34;http://ns.adobe.com/mxml/2009&#34;
&#160; &#160; &#160; &#160; xmlns:s=&#34;library://ns.adobe.com/flex/spark&#34;
&#160; &#160; &#160; &#160; xmlns:mx=&#34;library://ns.adobe.com/flex/halo&#34;&#62;
&#160;
&#160; &#160; &#60;mx:Form&#62;
&#160; &#160; &#160; &#160; &#60;mx:FormItem&#160;label=&#34;contentBackgroundColor:&#34;&#62;
&#160; &#160; &#160; &#160; &#160; &#160; &#60;mx:ColorPicker&#160;id=&#34;colorPicker&#34;
&#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; selectedColor=&#34;white&#34;&#160;/&#62;
&#160; &#160; &#160; &#160; &#60;/mx:FormItem&#62;
&#160; &#160; &#60;/mx:Form&#62;
&#160;
&#160; &#160; &#60;s:Panel&#160;id=&#34;panel&#34;
&#160; &#160; &#160; &#160; &#160; &#160; title=&#34;Spark Panel [...]]]></description>
		<wfw:commentRss>http://blog.minidx.com/2009/07/31/2797.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk
Page Caching using disk (enhanced)
Database Caching 2/19 queries in 0.319 seconds using disk
Object Caching 409/755 objects using disk

Served from: blog.minidx.com @ 2012-02-10 01:22:20 -->
