zoukankan      html  css  js  c++  java
  • 神奇的TextField(1)

    先看一大段测试代码,每个小方法的注释行是输出结果。

    private var text_content:TextField;

    private function textFieldDemo():void{
    text_content=new TextField();
    addChild(text_content);
    textFieldDemo26();
    }

    private function textFieldDemo1():void{
    trace(text_content.width);
    text_content.text="nihao";
    trace(text_content.width);
    text_content.autoSize="left";
    trace(text_content.width);
    //text正常显示,输出100 100 30
    }

    private function textFieldDemo12():void{
    text_content.multiline=true;
    trace(text_content.width);
    text_content.text="nihao";
    trace(text_content.width);
    text_content.autoSize="left";
    trace(text_content.width);
    //text正常显示,输出100 100 30
    }

    private function textFieldDemo13():void{
    text_content.wordWrap=true;
    trace(text_content.width);
    text_content.text="nihao";
    trace(text_content.width);
    text_content.autoSize="left";
    trace(text_content.width);
    //text正常显示,输出100 100 100
    }

    private function textFieldDemo14():void{
    trace(text_content.width);
    text_content.text="nihao";
    trace(text_content.width);
    text_content.autoSize="left";
    trace(text_content.width);
    text_content.wordWrap=true;
    trace(text_content.width);
    //text正常显示,输出100 100 30 30
    }

    private function textFieldDemo15():void{
    text_content.width=222;
    text_content.wordWrap=true;
    trace(text_content.width);
    text_content.text="nihao";
    trace(text_content.width);
    text_content.autoSize="left";
    trace(text_content.width);
    //text正常显示,输出222 222 222
    }

    private function textFieldDemo16():void{
    text_content.text="nihao";
    trace(text_content.width);
    text_content.wordWrap=true;
    trace(text_content.width);
    text_content.autoSize="left";
    trace(text_content.width);
    //text正常显示,输出100 100 100
    }

    private function textFieldDemo2():void{
    trace(text_content.width);
    text_content.autoSize="left";
    trace(text_content.width);
    text_content.text="nihao";
    trace(text_content.width);
    //text正常显示,输出100 4 30
    }

    private function textFieldDemo22():void{
    text_content.multiline=true;
    trace(text_content.width);
    text_content.autoSize="left";
    trace(text_content.width);
    text_content.text="nihao";
    trace(text_content.width);
    //text正常显示,输出100 4 30
    }

    private function textFieldDemo23():void{
    text_content.wordWrap=true;
    trace(text_content.width);
    text_content.autoSize="left";
    trace(text_content.width);
    text_content.text="nihao";
    trace(text_content.width);
    //text正常显示,输出100 100 100
    }

    private function textFieldDemo24():void{
    trace(text_content.width);
    text_content.autoSize="left";
    trace(text_content.width);
    text_content.text="nihao";
    trace(text_content.width);
    text_content.wordWrap=true;
    trace(text_content.width);
    //text正常显示,输出100 4 30 30
    }

    private function textFieldDemo25():void{
    text_content.width=222;
    text_content.wordWrap=true;
    trace(text_content.width);
    text_content.autoSize="left";
    trace(text_content.width);
    text_content.text="nihao";
    trace(text_content.width);
    //text正常显示,输出222 222 222
    }

    private function textFieldDemo26():void{
    text_content.width=222;
    text_content.autoSize="left";
    trace(text_content.width);
    text_content.wordWrap=true;
    trace(text_content.width);
    text_content.text="nihao";
    trace(text_content.width);
    //text"不显示"(界面上看不到textfield),输出4 4 4
    }

    仔细分析上面的代码执行结果,可以得出如下结论:

    1.设置wordwrap,mulitline不会导致width值发生变化,但设置wordwrap可能会对width的值产生影响。

    2.设置autosize属性,当wordwrap为false时导致width值发生变化,当wordwrap为true时不对width产生影响。

    3.设置text属性,当wordwrap为false并且autosize不为none时,width值才发生变化。否则不对width产生影响。

    就是说,wordwrap autosize text对width都有决定作用。

  • 相关阅读:
    sqlite轻量型数据库笔记
    WPF学习之MVVM笔记
    Halcon 圆测量与直线测量
    深入浅出WPF_读书笔记
    研华轴卡PCI1245L配ADAM3956接线板与台达ASD-A2伺服驱动器和松下A5伺服驱动器
    dataGridView添加ComboBox 每行绑定不同的集合,显示默认值
    VS2015 注释英文
    java的安装环境配置详细步骤
    万能正则解析 json 数据 解析成键值对
    http 异步 接收 回传 数据文字和文件流
  • 原文地址:https://www.cnblogs.com/tianlanliao/p/3671882.html
Copyright © 2011-2022 走看看