#include <GUIConstantsEx.au3>
#include <ListViewConstants.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Form1", 273, 168, 246, 183)
$ListView1 = GUICtrlCreateListView("test", 8, 8, 250, 150)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
GUICtrlCreateListViewItem("test",$listview1)
GUICtrlSetImage(-1, "shell32.dll", 18)
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
EndSwitch
WEnd
图标本身是彩色的,有办法加载成灰色,或者修改成灰色吗? |