• Creating a custom ComboBox item renderer in Flex


    The following example shows how you can create a simple ComboBox item renderer which displays multiline items in the ComboBox control’s drop down menu
    <?xml version="1.0" encoding="utf-8"?>
    <!-- http://blog.flexexamples.com/2007/09/25/creating-a-custom-combobox-item-renderer-in-flex/ -->
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
            layout
    ="vertical"
            verticalAlign
    ="top"
            backgroundColor
    ="white">

        
    <mx:XMLList id="statesXMLList">
            
    <state abbrev="AL" name="Alabama" />
            
    <state abbrev="AK" name="Alaska" />
            
    <state abbrev="AZ" name="Arizona" />
            
    <state abbrev="AR" name="Arkansas" />
            
    <state abbrev="CA" name="California" />
            
    <state abbrev="CO" name="Colorado" />
            
    <state abbrev="CT" name="Connecticut" />
        
    </mx:XMLList>

        
    <mx:ComboBox id="comboBox"
                prompt
    ="Please select a State"
                dataProvider
    ="{statesXMLList}"
                rowCount
    ="3"
                labelField
    ="@name"
                itemRenderer
    ="ComboBoxItemRenderer" />

    </mx:Application>
    ComboBoxItemRenderer.mxml:
    <?xml version="1.0" encoding="utf-8"?>
    <!-- http://blog.flexexamples.com/2007/09/25/creating-a-custom-combobox-item-renderer-in-flex/ -->
    <mx:VBox xmlns:mx="http://www.adobe.com/2006/mxml"
            styleName
    ="plain">

        
    <mx:Label text="{data.@name}"
                fontSize
    ="11"
                fontWeight
    ="bold" />
        
    <mx:Label text="{data.@abbrev}"
                fontSize
    ="9"
                paddingLeft
    ="10" />

    </mx:VBox>

  • 相关阅读:
    hdu 4614 线段树 二分
    cf 1066d 思维 二分
    lca 最大生成树 逆向思维 2018 徐州赛区网络预赛j
    rmq学习
    hdu 5692 dfs序 线段树
    dfs序介绍
    poj 3321 dfs序 树状数组 前向星
    cf 1060d 思维贪心
    【PAT甲级】1126 Eulerian Path (25分)
    【PAT甲级】1125 Chain the Ropes (25分)
  • 原文地址:https://www.cnblogs.com/taobataoma/p/1035775.html
Copyright © 2020-2023  润新知