GUICtrlCreateCombo 是否不能改成"不能输入"
今天发现Combo选择框 都可以键盘输入...这样可能会造成一些无法预期的错误
请问可以改成不能输入的吗?(就是只能选)
3Q
[ 本帖最后由 tts 于 2008-7-26 12:20 编辑 ]
#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
感谢sanhen大
抱歉,查了发现我问了笨问题
试过很多样式..唯独漏了它... 路过 顶起,学习学习
页:
[1]