heavenm 发表于 2012-3-28 08:41:28

求助TreeView 如何改变图标大小[已解决]

本帖最后由 heavenm 于 2012-3-28 08:46 编辑

#include <GuiConstantsEx.au3>
#include <GuiTreeView.au3>
#include <GuiImageList.au3>
#include <WindowsConstants.au3>

$Debug_TV = False ; 检查被传递给函数的类名, 设置为 True, 并使用另一个控件句柄, 查看它的工作

_Main()

Func _Main()

    Local $hItem, $hImage, $iImage, $hTreeView
    Local $iStyle = BitOR($TVS_EDITLABELS, $TVS_HASBUTTONS, $TVS_HASLINES, $TVS_LINESATROOT, $TVS_DISABLEDRAGDROP, $TVS_SHOWSELALWAYS, $TVS_CHECKBOXES)

    GUICreate("树视图(TreeView) UDF 函数演示", 400, 300)

    $hTreeView = GUICtrlCreateTreeView(2, 2, 396, 268, $iStyle, $WS_EX_CLIENTEDGE)
    GUISetState()

    $hImage = _GUIImageList_Create(16, 16, 5, 3)
    _GUIImageList_AddIcon($hImage, "shell32.dll", 110)
    _GUIImageList_AddIcon($hImage, "shell32.dll", 131)
    _GUIImageList_AddIcon($hImage, "shell32.dll", 165)
    _GUIImageList_AddIcon($hImage, "shell32.dll", 168)
    _GUIImageList_AddIcon($hImage, "shell32.dll", 137)
    _GUIImageList_AddIcon($hImage, "shell32.dll", 146)
    _GUICtrlTreeView_SetNormalImageList($hTreeView, $hImage)

    _GUICtrlTreeView_BeginUpdate($hTreeView)
    For $x = 1 To Random(2, 10, 1)
      $iImage = Random(0, 5, 1)
      $hItem = _GUICtrlTreeView_Add($hTreeView, 0, StringFormat("[%02d] 主项", $x), $iImage, $iImage)
      For $y = 1 To Random(2, 10, 1)
            $iImage = Random(0, 5, 1)
            _GUICtrlTreeView_AddChild($hTreeView, $hItem, StringFormat("[%02d] 子项", $y), $iImage, $iImage)
      Next
    Next
    _GUICtrlTreeView_EndUpdate($hTreeView)

    ; 循环到用户退出
    Do
    Until GUIGetMsg() = $GUI_EVENT_CLOSE
    GUIDelete()
EndFunc   ;==>_Main

heavenm 发表于 2012-3-28 08:41:43

本帖最后由 heavenm 于 2012-3-28 08:45 编辑

$hImage = _GUIImageList_Create(32, 32, 5, 3)

mbdnmt 发表于 2013-4-25 00:18:53

还是这个牛呀~找到了想要的

alaws 发表于 2015-7-20 02:47:13

楼主分享的这个很实用
页: [1]
查看完整版本: 求助TreeView 如何改变图标大小[已解决]