duck904 发表于 2012-8-13 20:00:01

[已解决]GUICtrlCreateCombo如何禁止用户输入

本帖最后由 duck904 于 2012-8-13 20:49 编辑

如题:GUICtrlCreateCombo如何禁止用户输入,只能选择下拉列表中的数据

ajian55 发表于 2012-8-13 20:16:33

#include <ComboConstants.au3>
;...
GUICtrlCreateCombo("item1", 10, 10, -1, -1, BitOR($GUI_SS_DEFAULT_COMBO ,$CBS_DROPDOWNLIST)) ;使用样式 $CBS_DROPDOWNLIST
;...

duck904 发表于 2012-8-13 20:19:09

非常感谢你能回答这么小白的问题{:face (88):}

penguinl 发表于 2012-12-2 23:11:28

多谢二楼哈,我正好也需要!
页: [1]
查看完整版本: [已解决]GUICtrlCreateCombo如何禁止用户输入