Flex(Flash Builder)中,ComboBox禁止使用者自動編輯的簡易方法

來源:互聯網
上載者:User

使用的是Flex4,據說Flex3使用的是label


一開始在網上搜尋資料,說要使用“皮膚”,作為一個初學者,不懂~~~


有一個簡單的小技巧

Flex中Combo源碼

*  @langversion 3.0 *  @playerversion Flash 10 *  @playerversion AIR 1.5 *  @productversion Flex 4 */public class ComboBox extends DropDownListBase implements IIMESupport{    //--------------------------------------------------------------------------    //    //  Skin Parts    //    //--------------------------------------------------------------------------       /**     *  Optional skin part that holds the input text or the selectedItem text.     *      *  @langversion 3.0     *  @playerversion Flash 10     *  @playerversion AIR 1.5     *  @productversion Flex 4     */    [SkinPart(required="false")]    public var textInput:TextInput;    //   這裡,使用的是一個輸入框                //--------------------------------------------------------------------------    //    //  Class mixins    //    //--------------------------------------------------------------------------                /**     *  @private     *  Placeholder for mixin by ComboBoxAccImpl.     */    mx_internal static var createAccessibilityImplementation:Function;                /**     *  Constructor.     *      *  @langversion 3.0     *  @playerversion Flash 10     *  @playerversion AIR 1.5     *  @productversion Flex 4     */    public function ComboBox()    {        super();                        addEventListener(KeyboardEvent.KEY_DOWN, capture_keyDownHandler, true);        allowCustomSelectedItem = true;    }

也就是說,可以利用輸入框的editable來限定是否能夠輸入

<!-- 下拉選框中有一個小技巧來禁止使用者手動輸入,也可以使用“皮膚”的方式,但是相對麻煩一些 -->        <s:ComboBox id="selectUnit" x="117" y="154" width="174" change="comboBoxClick()"                    dataProvider="{_unitSelectList}" enabled="true" prompt="choose a number"                    selectedIndex="-1" creationComplete="selectUnit.textInput.editable = false"/>


本文出自 “douglas_ship” 部落格,請務必保留此出處http://hlyton.blog.51cto.com/7239469/1297851

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.