码迷,mamicode.com
首页 > 其他好文 > 详细

[Flex] ButtonBar系列——最后一个项目的样式设置

时间:2015-10-15 12:35:46      阅读:126      评论:0      收藏:0      [点我收藏+]

标签:

<?xml version="1.0" encoding="utf-8"?>
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009" 
               xmlns:s="library://ns.adobe.com/flex/spark" 
               xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600">
    <fx:Script>
        <![CDATA[
            import mx.collections.ArrayCollection;
        ]]>
    </fx:Script>
    <fx:Declarations>
        <!-- 将非可视元素(例如服务、值对象)放在此处 -->
    </fx:Declarations>
    <fx:Style>
        @namespace s "library://ns.adobe.com/flex/spark";
        @namespace mx "library://ns.adobe.com/flex/mx";
        .lastButton{
            color:blue;
            cornerRadius:20;
            fontWeight:normal;
            chromeColor:haloGreen;
        }
    </fx:Style>
    <mx:ButtonBar id="buttonBar" dataProvider="[red,orange,yellow,green,blue]" lastButtonStyleName="lastButton"  />
    <!--<s:ButtonBar dataProvider="{new ArrayCollection([‘red‘,‘orange‘,‘yellow‘,‘green‘,‘blue‘])}"/>-->
</s:Application>

 

[Flex] ButtonBar系列——最后一个项目的样式设置

标签:

原文地址:http://www.cnblogs.com/frost-yen/p/4881958.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!