cuiyaping2515 发表于 2015-12-14 20:09:19

Au3中有实现下拉复选框功能的指令吗?

Au3中什么指令可以实现这种效果啊?试了用GUICtrlCreateCombo也不行,求指教!

afan 发表于 2015-12-14 20:43:06

在指定位置创建一个弹窗,内建ListView控件

cuiyaping2515 发表于 2015-12-14 23:09:40

可以举个例子吗?还是不太明白,我果然还是太笨了

wangms 发表于 2015-12-15 11:33:20

路过学习下。。。。。。。。。。。。。。

ura 发表于 2015-12-18 12:48:36

你可以去参考一下#include <GuiComboBoxEx.au3>
#include <GuiImageList.au3>
#include <GuiConstantsEx.au3>

Opt('MustDeclareVars', 1)

$Debug_CB = False ; Check ClassName being passed to ComboBox/ComboBoxEx functions, set to True and use a handle to another control to see it work

_Main()

Func _Main()
      Local $hGUI, $hImage, $image, $hCombo
      
      ; Create GUI
      $hGUI = GUICreate("ComboBoxEx Get/Set Item Image", 400, 300)
      $hCombo = _GUICtrlComboBoxEx_Create ($hGUI, "", 2, 2, 394, 100)
      GUISetState()

      $hImage = _GUIImageList_Create (16, 16, 5, 3)
      _GUIImageList_AddIcon ($hImage, @SystemDir & "\rasdlg.dll", 1)
      _GUIImageList_AddIcon ($hImage, @SystemDir & "\rasdlg.dll", 0)
      _GUICtrlComboBoxEx_SetImageList ($hCombo, $hImage)

      _GUICtrlComboBoxEx_BeginUpdate ($hCombo)
      For $x = 0 To 10
                $image = Random(0, 1, 1)
                _GUICtrlComboBoxEx_AddString ($hCombo, StringFormat("%03d : Random string", Random(1, 10, 1)), $image, $image)
      Next
      _GUICtrlComboBoxEx_EndUpdate ($hCombo)
      _GUICtrlComboBoxEx_SetItemImage ($hCombo, 1, 1)
      MsgBox(4160, "Information", "Item Image: " & _GUICtrlComboBoxEx_GetItemImage ($hCombo, 0))

      Do
      Until GUIGetMsg() = $GUI_EVENT_CLOSE
EndFunc   ;==>_Main

cuiyaping2515 发表于 2015-12-24 13:04:23

貌似样式相似,但复选框没法选择啊,尽管如此还是非常感谢5楼大大给予的帮助!
页: [1]
查看完整版本: Au3中有实现下拉复选框功能的指令吗?