<?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; Skin</title>
	<atom:link href="http://blog.minidx.com/tag/skin/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中如何去除ComboBox竖直方向分割符的例子</title>
		<link>http://blog.minidx.com/2009/11/07/3027.html</link>
		<comments>http://blog.minidx.com/2009/11/07/3027.html#comments</comments>
		<pubDate>Sat, 07 Nov 2009 14:28:14 +0000</pubDate>
		<dc:creator>Minidxer</dc:creator>
				<category><![CDATA[ComboBox]]></category>
		<category><![CDATA[Gumbo]]></category>
		<category><![CDATA[Skin]]></category>

		<guid isPermaLink="false">http://blog.minidx.com/?p=3027</guid>
		<description><![CDATA[接下来的例子演示了Flex 4中如何通过skin样式自定义皮肤，去除ComboBox竖直方向分割符。
让我们先来看一下Demo（可以点击这里察看源代码）：









下面是完整代码(或点击这里察看)：
下面是main.mxml：
&#60;?xml version=&#34;1.0&#34; encoding=&#34;utf-8&#34;?&#62;
&#60;s:Application&#160;name=&#34;Halo_ComboBox_skin_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:ComboBox&#160;id=&#34;comboBox&#34;
&#160; &#160; &#160; &#160; &#160; &#160; dataProvider=&#34;[The,Quick,Brown,Fox,Jumps,Over,The,Lazy,Dog]&#34;
&#160; &#160; &#160; &#160; &#160; &#160; skin=&#34;skins.CustomComboBoxSkin&#34;
&#160; &#160; &#160; &#160; &#160; &#160; horizontalCenter=&#34;0&#34;&#160;verticalCenter=&#34;-60&#34; /&#62;
&#160;
&#60;/s:Application&#62;
下面为skins/CustomComboBoxSkin.mxml的代码:
&#60;?xml version=&#34;1.0&#34; encoding=&#34;utf-8&#34;?&#62;
&#60;local:SparkSkinForHalo&#160;name=&#34;CustomComboBoxSkin&#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:local=&#34;mx.skins.spark.*&#34;
&#160; &#160; &#160; &#160; minWidth=&#34;21&#34;&#160;minHeight=&#34;21&#34;
&#160; [...]]]></description>
		<wfw:commentRss>http://blog.minidx.com/2009/11/07/3027.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>5款不得不看的Flex皮肤</title>
		<link>http://blog.minidx.com/2009/08/11/2829.html</link>
		<comments>http://blog.minidx.com/2009/08/11/2829.html#comments</comments>
		<pubDate>Tue, 11 Aug 2009 10:37:46 +0000</pubDate>
		<dc:creator>Minidxer</dc:creator>
				<category><![CDATA[Adobe其他]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[Skin]]></category>
		<category><![CDATA[皮肤]]></category>

		<guid isPermaLink="false">http://blog.minidx.com/2009/08/11/2829.html</guid>
		<description><![CDATA[Flex应用中允许我们动态加载Skin，这就为我们开发更加个性化的Flex应用提供了便利。作为一个开发人员，总是希望自己开发的应用是独一无二的，而且运行的时候给人以“赏心悦目”的感觉那就跟完美了。不过很可惜并不是每一个开发人员都是一个很好的设计人员。要定置一套漂亮的Skin，除了必要的技术外，还是需要不少“艺术细胞”。
没有艺术细胞的TX们怎么办呢？好在我们的互联网是开放的，并且到处都充满着共享精神。DoNotYet.com整理了一个列表，列出了5款相当漂亮的Flex皮肤，大家可以参考一下，当然你知道其他的而列表中没有的话，也可以留言与大家分享。
http://www.donotyet.com/2009/08/09/5-very-beautiful-skins-for-flex-applications/
你可能还对下列文章感兴趣:超过10万的免费字体让您的Flex UI(Skin和Theme)鹤立鸡群Flex中如何通过downArrowSkin和upArrowSkin样式设置NumericStepper控件的上下箭头Skin的例子480+免费icon sets帮助我们在Flex中创建自己的漂亮的Skin和ThemeFlex中如何设置进度条(ProgressBar)的自定义皮肤(Skin)的例子包含所有Flex文档的ZIP文件(52MB)]]></description>
		<wfw:commentRss>http://blog.minidx.com/2009/08/11/2829.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Flex中如何去掉ComboBox竖直方向分割符的例子</title>
		<link>http://blog.minidx.com/2009/07/29/2786.html</link>
		<comments>http://blog.minidx.com/2009/07/29/2786.html#comments</comments>
		<pubDate>Wed, 29 Jul 2009 12:09:39 +0000</pubDate>
		<dc:creator>Minidxer</dc:creator>
				<category><![CDATA[ComboBox]]></category>
		<category><![CDATA[Skin]]></category>

		<guid isPermaLink="false">http://blog.minidx.com/?p=2786</guid>
		<description><![CDATA[接下来的例子演示了Flex中如何去掉ComboBox竖直方向分割符。 
让我们先来看一下Demo（可以点击这里察看源代码）：









下面是完整代码(或点击这里察看)：
下面是main.mxml：
&#60;?xml version=&#34;1.0&#34; encoding=&#34;utf-8&#34;?&#62;
&#60;!-- http://blog.flexexamples.com/2009/03/23/removing-the-vertical-separator-from-the-combobox-control-in-flex/ --&#62;
&#60;Application&#160;name=&#34;ComboBox_skin_test&#34;
&#160; &#160; &#160; &#160; xmlns=&#34;http://www.adobe.com/2006/mxml&#34;
&#160; &#160; &#160; &#160; backgroundColor=&#34;white&#34;&#62;
&#160;
&#160; &#160; &#60;ComboBox&#160;id=&#34;comboBox&#34;
&#160; &#160; &#160; &#160; &#160; &#160; dataProvider=&#34;[The,Quick,Brown,Fox,Jumps,Over,The,Lazy,Dog]&#34;
&#160; &#160; &#160; &#160; &#160; &#160; skin=&#34;CustomComboBoxSkin&#34;&#160;/&#62;
&#160;
&#60;/Application&#62;
下面是CustomComboBoxSkin.as：
package {
&#160; &#160; import&#160;flash.display.GradientType;
&#160; &#160; import&#160;flash.display.Graphics;
&#160;
&#160; &#160; import&#160;mx.skins.halo.ComboBoxArrowSkin;
&#160; &#160; import&#160;mx.skins.halo.HaloColors;
&#160; &#160; import&#160;mx.styles.StyleManager;
&#160; &#160; import&#160;mx.utils.ColorUtil;
&#160;
&#160; &#160; public&#160;class CustomComboBoxSkin extends ComboBoxArrowSkin {
&#160; &#160; &#160; &#160; private&#160;static var cache:Object = {};
&#160;
&#160; [...]]]></description>
		<wfw:commentRss>http://blog.minidx.com/2009/07/29/2786.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flex中如何通过buttonStyleName样式设置ButtonBar的Skin的例子</title>
		<link>http://blog.minidx.com/2009/02/15/2106.html</link>
		<comments>http://blog.minidx.com/2009/02/15/2106.html#comments</comments>
		<pubDate>Sun, 15 Feb 2009 04:35:36 +0000</pubDate>
		<dc:creator>Minidxer</dc:creator>
				<category><![CDATA[ButtonBar]]></category>
		<category><![CDATA[buttonStyleName]]></category>
		<category><![CDATA[Skin]]></category>

		<guid isPermaLink="false">http://blog.minidx.com/?p=2106</guid>
		<description><![CDATA[接下来的例子演示了Flex中如何通过buttonStyleName样式，设置ButtonBar的Skin。
让我们先来看一下Demo（可以右键View Source或点击这里察看源代码）：









下面是完整代码(或点击这里察看)：
Download: main.mxml&#60;?xml version=&#34;1.0&#34; encoding=&#34;utf-8&#34;?&#62;
&#60;mx:Application&#160;xmlns:mx=&#34;http://www.adobe.com/2006/mxml&#34;
&#160; &#160; &#160; &#160; layout=&#34;vertical&#34;
&#160; &#160; &#160; &#160; verticalAlign=&#34;middle&#34;
&#160; &#160; &#160; &#160; backgroundColor=&#34;white&#34;&#62;
&#160;
&#160; &#160; &#60;mx:Style&#62;
&#160; &#160; &#160; &#160; ButtonBar {
&#160; &#160; &#160; &#160; &#160; &#160; buttonStyleName: myCustomButtonStyleName;
&#160; &#160; &#160; &#160; &#160; &#160; color: #999999;
&#160; &#160; &#160; &#160; }
&#160;
&#160; &#160; &#160; &#160; .myCustomButtonStyleName {
&#160; &#160; &#160; &#160; &#160; &#160; skin: Embed(source=&#34;assets/ButtonBarSkins.swf&#34;,
&#160; &#160; [...]]]></description>
		<wfw:commentRss>http://blog.minidx.com/2009/02/15/2106.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flex中如何利用skin样式修改DateField中默认的日历图标的例子</title>
		<link>http://blog.minidx.com/2009/01/19/1958.html</link>
		<comments>http://blog.minidx.com/2009/01/19/1958.html#comments</comments>
		<pubDate>Mon, 19 Jan 2009 00:19:17 +0000</pubDate>
		<dc:creator>Minidxer</dc:creator>
				<category><![CDATA[DateField]]></category>
		<category><![CDATA[Skin]]></category>

		<guid isPermaLink="false">http://blog.minidx.com/?p=1958</guid>
		<description><![CDATA[接下来的例子演示了Flex中如何利用skin样式，修改DateField中默认的日历图标。
让我们先来看一下Demo（可以右键View Source或点击这里察看源代码）：









下面是完整代码(或点击这里察看)：
Download: main.mxml&#60;?xml version=&#34;1.0&#34; encoding=&#34;utf-8&#34;?&#62;
&#60;mx:Application&#160;xmlns:mx=&#34;http://www.adobe.com/2006/mxml&#34;
&#160; &#160; &#160; &#160; layout=&#34;vertical&#34;
&#160; &#160; &#160; &#160; verticalAlign=&#34;top&#34;
&#160; &#160; &#160; &#160; backgroundColor=&#34;white&#34;&#62;
&#160;
&#160; &#160; &#60;mx:Style&#62;
&#160; &#160; &#160; &#160; DateField {
&#160; &#160; &#160; &#160; &#160; &#160; skin: Embed(&#34;clock_add.png&#34;);
&#160; &#160; &#160; &#160; &#160; &#160; /* null the skins defined in default.css */
&#160; &#160; &#160; &#160; &#160; &#160; upSkin: ClassReference(null);
&#160; &#160; &#160; &#160; &#160; [...]]]></description>
		<wfw:commentRss>http://blog.minidx.com/2009/01/19/1958.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/32 queries in 0.379 seconds using disk
Object Caching 392/770 objects using disk

Served from: blog.minidx.com @ 2012-02-09 15:59:23 -->
