zoukankan      html  css  js  c++  java
  • Creating a ControlBar container in Flex using ActionScript

    The following example shows how you can create a simple Panel container with a nested ControlBar container in Flex using ActionScript
    <?xml version="1.0" encoding="utf-8"?>
    <!-- http://blog.flexexamples.com/2008/02/25/creating-a-controlbar-container-in-flex-using-actionscript/ -->
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
            layout
    ="vertical"
            verticalAlign
    ="middle"
            backgroundColor
    ="white"
            creationComplete
    ="init();">

        
    <mx:Script>
            
    <![CDATA[
                import mx.controls.Button;
                import mx.controls.Text;
                import mx.containers.ControlBar;
                import mx.containers.Panel;

                private var panel:Panel;
                private var cBar:ControlBar
                private var txt:Text;
                private var btn:Button;

                private function init():void {
                    txt = new Text();
                    txt.text = "The quick brown fox jumped over the lazy dog.";
                    txt.percentWidth = 100;

                    btn = new Button();
                    btn.label = "Button";

                    cBar = new ControlBar();
                    cBar.addChild(btn);

                    panel = new Panel();
                    panel.title = "Panel title";
                    panel.status = "status";
                    panel.width = 160;
                    panel.height = 140;
                    panel.addChild(txt);
                    panel.addChild(cBar);
                    addChild(panel);
                }
            
    ]]>
        
    </mx:Script>

    </mx:Application>

  • 相关阅读:
    命令行jarsigner签字和解决找不到证书链错误
    ERROR ITMS-90034
    module.exports 和 exports
    php扩展包
    switch的使用
    debug安卓屏幕滑动会抖动
    react native编译报错
    使用iTerm2替代Mac自带Terminal终端
    编码转换
    git 操作远程 本地缓存删除
  • 原文地址:https://www.cnblogs.com/taobataoma/p/1085132.html
Copyright © 2011-2022 走看看