tts 发表于 2008-7-26 01:35:39

GUICtrlCreateCombo 是否不能改成"不能输入"

今天发现Combo选择框 都可以键盘输入...
这样可能会造成一些无法预期的错误


请问可以改成不能输入的吗?(就是只能选)
3Q

[ 本帖最后由 tts 于 2008-7-26 12:20 编辑 ]

sanhen 发表于 2008-7-26 01:53:02



#include <GUIConstantsEx.au3>

Opt('MustDeclareVars', 1)

Example()

Func Example()
    Local $msg
    GUICreate("My GUI combo"); will create a dialog box that when displayed is centered

    GUICtrlCreateCombo("item1", 10, 10,150,20,0x0003) ; create first item
    GUICtrlSetData(-1, "item2|item3", "item3") ; add other item snd set a new default

    GUISetState()

    ; Run the GUI until the dialog is closed
    While 1
      $msg = GUIGetMsg()
      
      If $msg = $GUI_EVENT_CLOSE Then ExitLoop
    WEnd
EndFunc   ;==>Example

tts 发表于 2008-7-26 12:19:51

感谢sanhen大
抱歉,查了发现我问了笨问题
试过很多样式..唯独漏了它...

今夜风真冷 发表于 2016-10-31 10:19:06

路过 顶起,学习学习
页: [1]
查看完整版本: GUICtrlCreateCombo 是否不能改成"不能输入"