<?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; verticalGap</title>
	<atom:link href="http://blog.minidx.com/tag/verticalgap/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 Gumbo中如何通过layout属性设置FxList布局方向的例子</title>
		<link>http://blog.minidx.com/2009/07/15/2730.html</link>
		<comments>http://blog.minidx.com/2009/07/15/2730.html#comments</comments>
		<pubDate>Tue, 14 Jul 2009 23:37:50 +0000</pubDate>
		<dc:creator>Minidxer</dc:creator>
				<category><![CDATA[FxList]]></category>
		<category><![CDATA[Gumbo]]></category>
		<category><![CDATA[gap]]></category>
		<category><![CDATA[horizontalGap]]></category>
		<category><![CDATA[layout]]></category>
		<category><![CDATA[verticalGap]]></category>

		<guid isPermaLink="false">http://blog.minidx.com/?p=2730</guid>
		<description><![CDATA[接下来的例子演示了Flex Gumbo中如何通过在layout属性中设置VerticalLayout对象或HorizontalLayout对象以及TileLayout对象，设置FxList布局方向。 
让我们先来看一下Demo（可以点击这里察看源代码）：









下面是完整代码(或点击这里察看)：
Download: main.mxml&#60;?xml version=&#34;1.0&#34; encoding=&#34;utf-8&#34;?&#62;
&#60;FxApplication&#160;name=&#34;FxList_layout_test&#34;
&#160; &#160; &#160; &#160; xmlns=&#34;http://ns.adobe.com/mxml/2009&#34;
&#160; &#160; &#160; &#160; backgroundColor=&#34;white&#34;&#62;
&#160;
&#160; &#160; &#60;FxList&#160;id=&#34;list&#34;
&#160; &#160; &#160; &#160; &#160; &#160; horizontalCenter=&#34;0&#34;
&#160; &#160; &#160; &#160; &#160; &#160; verticalCenter=&#34;0&#34;
&#160; &#160; &#160; &#160; &#160; &#160; width=&#34;150&#34;
&#160; &#160; &#160; &#160; &#160; &#160; height=&#34;100&#34;&#62;
&#160; &#160; &#160; &#160; &#60;dataProvider&#62;
&#160; &#160; &#160; &#160; &#160; &#160; &#60;ArrayCollection&#62;
&#160; &#160; &#160; &#160; &#160; &#160; [...]]]></description>
		<wfw:commentRss>http://blog.minidx.com/2009/07/15/2730.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flex中如何通过verticalGap和horizontalGap样式设置ButtonBar内按钮间间距的例子</title>
		<link>http://blog.minidx.com/2009/02/12/2096.html</link>
		<comments>http://blog.minidx.com/2009/02/12/2096.html#comments</comments>
		<pubDate>Thu, 12 Feb 2009 00:59:34 +0000</pubDate>
		<dc:creator>Minidxer</dc:creator>
				<category><![CDATA[ButtonBar]]></category>
		<category><![CDATA[direction]]></category>
		<category><![CDATA[horizontalGap]]></category>
		<category><![CDATA[verticalGap]]></category>

		<guid isPermaLink="false">http://blog.minidx.com/?p=2096</guid>
		<description><![CDATA[接下来的例子演示了Flex中如何通过verticalGap和horizontalGap样式，设置ButtonBar内按钮间间距。
让我们先来看一下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;horizontal&#34;
&#160; &#160; &#160; &#160; verticalAlign=&#34;middle&#34;
&#160; &#160; &#160; &#160; backgroundColor=&#34;white&#34;&#62;
&#160;
&#160; &#160; &#60;mx:Array&#160;id=&#34;arr&#34;&#62;
&#160; &#160; &#160; &#160; &#60;mx:Object&#160;label=&#34;The&#34; /&#62;
&#160; &#160; &#160; &#160; &#60;mx:Object&#160;label=&#34;quick&#34; /&#62;
&#160; &#160; &#160; &#160; &#60;mx:Object&#160;label=&#34;brown&#34; /&#62;
&#160; &#160; &#160; &#160; &#60;mx:Object&#160;label=&#34;fox&#34; /&#62;
&#160; &#160; &#60;/mx:Array&#62;
&#160;
&#160; &#160; &#60;mx:ApplicationControlBar&#160;dock=&#34;true&#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;verticalGap:&#34; direction=&#34;horizontal&#34;&#62;
&#160; &#160; [...]]]></description>
		<wfw:commentRss>http://blog.minidx.com/2009/02/12/2096.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flex中如何通过verticalGap样式设置VBox的各项间间距的例子</title>
		<link>http://blog.minidx.com/2009/01/28/2038.html</link>
		<comments>http://blog.minidx.com/2009/01/28/2038.html#comments</comments>
		<pubDate>Wed, 28 Jan 2009 06:28:26 +0000</pubDate>
		<dc:creator>Minidxer</dc:creator>
				<category><![CDATA[VBox]]></category>
		<category><![CDATA[verticalGap]]></category>

		<guid isPermaLink="false">http://blog.minidx.com/?p=2038</guid>
		<description><![CDATA[接下来的例子演示了Flex中如何通过verticalGap样式，设置VBox的各项间间距。
让我们先来看一下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; HSlider {
&#160; &#160; &#160; &#160; &#160; &#160; dataTipPlacement: bottom;
&#160; &#160; &#160; &#160; &#160; &#160; dataTipPrecision: 0;
&#160; &#160; &#160; &#160; }
&#160; &#160; &#60;/mx:Style&#62;
&#160;
&#160; &#160; &#60;mx:Script&#62;
&#160; &#160; &#160; &#160; &#60;![CDATA[
&#160; &#160; &#160; &#160; &#160; &#160; [...]]]></description>
		<wfw:commentRss>http://blog.minidx.com/2009/01/28/2038.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flex中如何利用swatchGridBackgroundColor样式设置ColorPicker的样本颜色网格背景颜色的例子</title>
		<link>http://blog.minidx.com/2009/01/20/1967.html</link>
		<comments>http://blog.minidx.com/2009/01/20/1967.html#comments</comments>
		<pubDate>Tue, 20 Jan 2009 13:32:08 +0000</pubDate>
		<dc:creator>Minidxer</dc:creator>
				<category><![CDATA[ColorPicker]]></category>
		<category><![CDATA[horizontalGap]]></category>
		<category><![CDATA[swatchGridBackgroundColor]]></category>
		<category><![CDATA[swatchPanelStyleName]]></category>
		<category><![CDATA[verticalGap]]></category>

		<guid isPermaLink="false">http://blog.minidx.com/?p=1967</guid>
		<description><![CDATA[接下来的例子演示了Flex中如何利用swatchGridBackgroundColor样式，设置ColorPicker的样本颜色网格背景颜色。
让我们先来看一下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;
&#160; &#160; &#160; &#160; creationComplete=&#34;init();&#34;&#62;
&#160;
&#160; &#160; &#60;mx:Style&#62;
&#160; &#160; &#160; &#160; .myCustomSwatchPanelStyleName {
&#160; &#160; &#160; &#160; &#160; &#160; /* border */
&#160; &#160; &#160; &#160; &#160; &#160; swatchBorderColor: white;
&#160; &#160; &#160; &#160; &#160; &#160; swatchBorderSize: 1;
&#160;
&#160; &#160; &#160; &#160; &#160; &#160; [...]]]></description>
		<wfw:commentRss>http://blog.minidx.com/2009/01/20/1967.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flex中如何通过horizontalGap和verticalGap样式设置Legend控件水平和竖直间距的例子</title>
		<link>http://blog.minidx.com/2008/09/30/1450.html</link>
		<comments>http://blog.minidx.com/2008/09/30/1450.html#comments</comments>
		<pubDate>Tue, 30 Sep 2008 10:01:55 +0000</pubDate>
		<dc:creator>Minidxer</dc:creator>
				<category><![CDATA[Legend]]></category>
		<category><![CDATA[horizontalGap]]></category>
		<category><![CDATA[verticalGap]]></category>

		<guid isPermaLink="false">http://blog.minidx.com/?p=1450</guid>
		<description><![CDATA[接下来的例子演示了Flex中如何通过horizontalGap和verticalGap样式，设置Legend控件水平和竖直间距。
让我们先来看一下Demo（可以右键View Source或点击这里察看源代码）：









下面是完整代码(或点击这里察看)：
Download: main.mxml&#60;?xml version=&#34;1.0&#34; encoding=&#34;utf-8&#34;?&#62;
&#60;mx:Application&#160;name=&#34;Legend_horizontalGap_test&#34;
&#160; &#160; &#160; &#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:XMLListCollection&#160;id=&#34;dp&#34;&#62;
&#160; &#160; &#160; &#160; &#60;mx:source&#62;
&#160; &#160; &#160; &#160; &#160; &#160; &#60;mx:XMLList&#62;
&#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#60;product&#160;label=&#34;Product 1&#34; data=&#34;3&#34; /&#62;
&#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#60;product&#160;label=&#34;Product 2&#34; data=&#34;1&#34; /&#62;
&#160; [...]]]></description>
		<wfw:commentRss>http://blog.minidx.com/2008/09/30/1450.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/27 queries in 0.055 seconds using disk
Object Caching 420/793 objects using disk

Served from: blog.minidx.com @ 2012-02-09 22:30:02 -->
