chengjinn 发表于 2009-7-19 08:11:03

关于GUI GUICtrlCreateCombo 的一个问题

本帖最后由 chengjinn 于 2009-7-26 15:29 编辑

#include <GUIConstants.au3>

GUICreate("我的 GUI 之combo"); 创建一个居中显示的窗口

GUICtrlCreateCombo ("item1", 10,10) ; 创建第一个项目
GUICtrlSetData(-1,"item2|item3","item3") ; 添加其它项目并设置新的默认值

GUISetState ()

; 运行脚本直到窗口被关闭
While 1
    $msg = GUIGetMsg()
   
    If $msg = $GUI_EVENT_CLOSE Then ExitLoop
Wend
---------------------------------------------------------------------------------------------------
如何让GUICTRLCREATECOMBO创建的选择框.
只能点击下拉列表的文本.
而不能在选择框里输入!!!?

顽固不化 发表于 2009-7-19 10:55:56

#include <GUIConstants.au3>
#include <ComboConstants.au3>

GUICreate("我的 GUI 之combo"); 创建一个居中显示的窗口

$g=GUICtrlCreateCombo ("", 10,10,-1,-1,$CBS_DROPDOWNLIST ) ; 创建第一个项目
GUICtrlSetData(-1,"item1|item2|item3","item1") ; 添加其它项目并设置新的默认值

GUISetState ()

; 运行脚本直到窗口被关闭
While 1
    $msg = GUIGetMsg()
   
    If $msg = $GUI_EVENT_CLOSE Then ExitLoop
Wend

chengjinn 发表于 2009-7-19 15:12:09

谢谢!!清楚了.

harecn 发表于 2009-7-29 17:11:10

学到了....谢谢.....
页: [1]
查看完整版本: 关于GUI GUICtrlCreateCombo 的一个问题