zoukankan      html  css  js  c++  java
  • Displaying a Tree control as a pop up for a Flex PopUpButton control (转载)

    The following example shows how you can use a Tree control as a PopUpButton control’s pop up in Flex
    <?xml version="1.0" encoding="utf-8"?>
    <!-- http://blog.flexexamples.com/2008/02/26/displaying-a-tree-control-as-a-pop-up-for-a-flex-popupbutton-control/ -->
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
            layout
    ="vertical"
            verticalAlign
    ="middle"
            backgroundColor
    ="white">

        
    <mx:Style>
            Tree {
                textAlign: left;
                fontWeight: normal;
            }
        
    </mx:Style>

        
    <mx:XML id="mlb" source="mlb.xml" />

        
    <mx:ApplicationControlBar dock="true">
            
    <mx:PopUpButton label="Please select a team">
                
    <mx:popUp>
                    
    <mx:Tree id="tree"
                            dataProvider
    ="{mlb}"
                            labelField
    ="@label"
                            showRoot
    ="false"
                            width
    ="200"
                            rowCount
    ="8" />
                
    </mx:popUp>
            
    </mx:PopUpButton>
        
    </mx:ApplicationControlBar>

    </mx:Application>
  • 相关阅读:
    HDU--2024
    HDU--2021
    HDU--2020
    HDU--2019
    HDU--2018
    HDU--2017
    HDU--2016
    python全栈开发day13-迭代器、生成器、列表推导式等
    python全栈开发day12-函数的有用信息、带参数的装饰器、多个装饰器装饰一个函数、global和nonlocal的进一步解析和总结
    Python3使用Print输出带颜色字体
  • 原文地址:https://www.cnblogs.com/wuhenke/p/1642794.html
Copyright © 2011-2022 走看看