找回密码
 加入
搜索
查看: 2217|回复: 4

怎么定义ListView的事件

[复制链接]
发表于 2009-7-31 16:02:06 | 显示全部楼层 |阅读模式
本帖最后由 ueiayz 于 2009-7-31 17:46 编辑
#include <GUIConstantsEx.au3>
#include <ListViewConstants.au3>
#include <WindowsConstants.au3>
Opt("GUIOnEventMode", 1)  
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Form1", 633, 448, 192, 124)
GUISetOnEvent($GUI_EVENT_CLOSE, "CLOSEClicked")
$ListView1 = GUICtrlCreateListView("|", 88, 64, 330, 246)
GUICtrlSendMsg(-1, $LVM_SETCOLUMNWIDTH, 0, 120)
GUICtrlSendMsg(-1, $LVM_SETCOLUMNWIDTH, 1, 50)
$ListView1_0 = GUICtrlCreateListViewItem("www.baidu.com", $ListView1)
$ListView1_1 = GUICtrlCreateListViewItem("www.hao123.com", $ListView1)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###

While 1
        Sleep(500)
WEnd

Func CLOSEClicked()
        Exit
EndFunc

Func baidu()
        ;执行其他功能
EndFunc

Func hao123()
        ;执行其他功能
EndFunc
像这样创建出的ListView。能不能让鼠标点击ListView相应行数,执行相应函数?
还有:ListView的数据能不能点击顶上的列的标题从而按大小排列?
发表于 2009-7-31 18:13:18 | 显示全部楼层
#AutoIt3Wrapper_au3check_parameters=-d -w 1 -w 2 -w 3 -w 4 -w 5 -w 6
#include <GuiConstantsEx.au3>
#include <GuiListView.au3>
#include <GuiImageList.au3>
#include <WindowsConstants.au3>

Opt('MustDeclareVars', 1)

$Debug_LV = False ; Check ClassName being passed to ListView functions, set to True and use a handle to another control to see it work

Global $hListView

_Main()

Func _Main()

        Local $GUI, $hImage
        $GUI = GUICreate("(UDF Created) ListView Create", 400, 300)

        $hListView = _GUICtrlListView_Create($GUI, "", 2, 2, 394, 268)
        _GUICtrlListView_SetExtendedListViewStyle($hListView, BitOR($LVS_EX_GRIDLINES, $LVS_EX_FULLROWSELECT, $LVS_EX_SUBITEMIMAGES))
        GUISetState()
        
        GUIRegisterMsg($WM_NOTIFY, "WM_NOTIFY")

        ; Load images
        $hImage = _GUIImageList_Create()
        _GUIImageList_Add($hImage, _GUICtrlListView_CreateSolidBitMap($hListView, 0xFF0000, 16, 16))
        _GUIImageList_Add($hImage, _GUICtrlListView_CreateSolidBitMap($hListView, 0x00FF00, 16, 16))
        _GUIImageList_Add($hImage, _GUICtrlListView_CreateSolidBitMap($hListView, 0x0000FF, 16, 16))
        _GUICtrlListView_SetImageList($hListView, $hImage, 1)

        ; Add columns
        _GUICtrlListView_InsertColumn($hListView, 0, "Column 1", 100)
        _GUICtrlListView_InsertColumn($hListView, 1, "Column 2", 100)
        _GUICtrlListView_InsertColumn($hListView, 2, "Column 3", 100)

        ; Add items
        _GUICtrlListView_AddItem($hListView, "Row 1: Col 1", 0)
        _GUICtrlListView_AddSubItem($hListView, 0, "Row 1: Col 2", 1)
        _GUICtrlListView_AddSubItem($hListView, 0, "Row 1: Col 3", 2)
        _GUICtrlListView_AddItem($hListView, "Row 2: Col 1", 1)
        _GUICtrlListView_AddSubItem($hListView, 1, "Row 2: Col 2", 1)
        _GUICtrlListView_AddItem($hListView, "Row 3: Col 1", 2)

        ; Loop until user exits
        Do
        Until GUIGetMsg() = $GUI_EVENT_CLOSE
        GUIDelete()
EndFunc   ;==>_Main

Func WM_NOTIFY($hWnd, $iMsg, $iwParam, $ilParam)
        #forceref $hWnd, $iMsg, $iwParam
        Local $hWndFrom, $iIDFrom, $iCode, $tNMHDR, $hWndListView, $tInfo
;~         Local $tBuffer
        $hWndListView = $hListView
        If Not IsHWnd($hListView) Then $hWndListView = GUICtrlGetHandle($hListView)

        $tNMHDR = DllStructCreate($tagNMHDR, $ilParam)
        $hWndFrom = HWnd(DllStructGetData($tNMHDR, "hWndFrom"))
        $iIDFrom = DllStructGetData($tNMHDR, "IDFrom")
        $iCode = DllStructGetData($tNMHDR, "Code")
        Switch $hWndFrom
                Case $hWndListView
                        Switch $iCode
;~                                 Case $LVN_BEGINDRAG ; A drag-and-drop operation involving the left mouse button is being initiated
;~                                         $tInfo = DllStructCreate($tagNMLISTVIEW, $ilParam)
;~                                         _DebugPrint("$LVN_BEGINDRAG" & @LF & "--> hWndFrom:" & @TAB & $hWndFrom & @LF & _
;~                                                         "-->IDFrom:" & @TAB & $iIDFrom & @LF & _
;~                                                         "-->Code:" & @TAB & $iCode & @LF & _
;~                                                         "-->Item:" & @TAB & DllStructGetData($tInfo, "Item") & @LF & _
;~                                                         "-->SubItem:" & @TAB & DllStructGetData($tInfo, "SubItem") & @LF & _
;~                                                         "-->NewState:" & @TAB & DllStructGetData($tInfo, "NewState") & @LF & _
;~                                                         "-->OldState:" & @TAB & DllStructGetData($tInfo, "OldState") & @LF & _
;~                                                         "-->Changed:" & @TAB & DllStructGetData($tInfo, "Changed") & @LF & _
;~                                                         "-->ActionX:" & @TAB & DllStructGetData($tInfo, "ActionX") & @LF & _
;~                                                         "-->ActionY:" & @TAB & DllStructGetData($tInfo, "ActionY") & @LF & _
;~                                                         "-->Param:" & @TAB & DllStructGetData($tInfo, "Param"))
;~                                         ; No return value
;~                                 Case $LVN_BEGINLABELEDIT ; Start of label editing for an item
;~                                         $tInfo = DllStructCreate($tagNMLVDISPINFO, $ilParam)
;~                                         _DebugPrint("$LVN_BEGINLABELEDIT" & @LF & "--> hWndFrom:" & @TAB & $hWndFrom & @LF & _
;~                                                         "-->IDFrom:" & @TAB & $iIDFrom & @LF & _
;~                                                         "-->Code:" & @TAB & $iCode & @LF & _
;~                                                         "-->Mask:" & @TAB & DllStructGetData($tInfo, "Mask") & @LF & _
;~                                                         "-->Item:" & @TAB & DllStructGetData($tInfo, "Item") & @LF & _
;~                                                         "-->SubItem:" & @TAB & DllStructGetData($tInfo, "SubItem") & @LF & _
;~                                                         "-->State:" & @TAB & DllStructGetData($tInfo, "State") & @LF & _
;~                                                         "-->StateMask:" & @TAB & DllStructGetData($tInfo, "StateMask") & @LF & _
;~                                                         "-->Image:" & @TAB & DllStructGetData($tInfo, "Image") & @LF & _
;~                                                         "-->Param:" & @TAB & DllStructGetData($tInfo, "Param") & @LF & _
;~                                                         "-->Indent:" & @TAB & DllStructGetData($tInfo, "Indent") & @LF & _
;~                                                         "-->GroupID:" & @TAB & DllStructGetData($tInfo, "GroupID") & @LF & _
;~                                                         "-->Columns:" & @TAB & DllStructGetData($tInfo, "Columns") & @LF & _
;~                                                         "-->pColumns:" & @TAB & DllStructGetData($tInfo, "pColumns"))
;~                                         Return False ; Allow the user to edit the label
;~                                         ;Return True  ; Prevent the user from editing the label
;~                                 Case $LVN_BEGINRDRAG ; A drag-and-drop operation involving the right mouse button is being initiated
;~                                         $tInfo = DllStructCreate($tagNMLISTVIEW, $ilParam)
;~                                         _DebugPrint("$LVN_BEGINRDRAG" & @LF & "--> hWndFrom:" & @TAB & $hWndFrom & @LF & _
;~                                                         "-->IDFrom:" & @TAB & $iIDFrom & @LF & _
;~                                                         "-->Code:" & @TAB & $iCode & @LF & _
;~                                                         "-->Item:" & @TAB & DllStructGetData($tInfo, "Item") & @LF & _
;~                                                         "-->SubItem:" & @TAB & DllStructGetData($tInfo, "SubItem") & @LF & _
;~                                                         "-->NewState:" & @TAB & DllStructGetData($tInfo, "NewState") & @LF & _
;~                                                         "-->OldState:" & @TAB & DllStructGetData($tInfo, "OldState") & @LF & _
;~                                                         "-->Changed:" & @TAB & DllStructGetData($tInfo, "Changed") & @LF & _
;~                                                         "-->ActionX:" & @TAB & DllStructGetData($tInfo, "ActionX") & @LF & _
;~                                                         "-->ActionY:" & @TAB & DllStructGetData($tInfo, "ActionY") & @LF & _
;~                                                         "-->Param:" & @TAB & DllStructGetData($tInfo, "Param"))
;~                                         ; No return value
;~                                 Case $LVN_BEGINSCROLL ; A scrolling operation starts, Minium OS WinXP
;~                                         $tInfo = DllStructCreate($tagNMLVSCROLL, $ilParam)
;~                                         _DebugPrint("$LVN_BEGINSCROLL" & @LF & "--> hWndFrom:" & @TAB & $hWndFrom & @LF & _
;~                                                         "-->IDFrom:" & @TAB & $iIDFrom & @LF & _
;~                                                         "-->Code:" & @TAB & $iCode & @LF & _
;~                                                         "-->DX:" & @TAB & DllStructGetData($tInfo, "DX") & @LF & _
;~                                                         "-->DY:" & @TAB & DllStructGetData($tInfo, "DY"))
;~                                         ; No return value
                                Case $LVN_COLUMNCLICK ; A column was clicked
                                        $tInfo = DllStructCreate($tagNMLISTVIEW, $ilParam)
                                        _DebugPrint("$LVN_COLUMNCLICK" & @LF & "--> hWndFrom:" & @TAB & $hWndFrom & @LF & _
                                                        "-->IDFrom:" & @TAB & $iIDFrom & @LF & _
                                                        "-->Code:" & @TAB & $iCode & @LF & _
                                                        "-->Item:" & @TAB & DllStructGetData($tInfo, "Item") & @LF & _
                                                        "-->SubItem:" & @TAB & DllStructGetData($tInfo, "SubItem") & @LF & _
                                                        "-->NewState:" & @TAB & DllStructGetData($tInfo, "NewState") & @LF & _
                                                        "-->OldState:" & @TAB & DllStructGetData($tInfo, "OldState") & @LF & _
                                                        "-->Changed:" & @TAB & DllStructGetData($tInfo, "Changed") & @LF & _
                                                        "-->ActionX:" & @TAB & DllStructGetData($tInfo, "ActionX") & @LF & _
                                                        "-->ActionY:" & @TAB & DllStructGetData($tInfo, "ActionY") & @LF & _
                                                        "-->Param:" & @TAB & DllStructGetData($tInfo, "Param"))
                                        ; No return value
;~                                 Case $LVN_DELETEALLITEMS ; All items in the control are about to be deleted
;~                                         $tInfo = DllStructCreate($tagNMLISTVIEW, $ilParam)
;~                                         _DebugPrint("$LVN_DELETEALLITEMS" & @LF & "--> hWndFrom:" & @TAB & $hWndFrom & @LF & _
;~                                                         "-->IDFrom:" & @TAB & $iIDFrom & @LF & _
;~                                                         "-->Code:" & @TAB & $iCode & @LF & _
;~                                                         "-->Item:" & @TAB & DllStructGetData($tInfo, "Item") & @LF & _
;~                                                         "-->SubItem:" & @TAB & DllStructGetData($tInfo, "SubItem") & @LF & _
;~                                                         "-->NewState:" & @TAB & DllStructGetData($tInfo, "NewState") & @LF & _
;~                                                         "-->OldState:" & @TAB & DllStructGetData($tInfo, "OldState") & @LF & _
;~                                                         "-->Changed:" & @TAB & DllStructGetData($tInfo, "Changed") & @LF & _
;~                                                         "-->ActionX:" & @TAB & DllStructGetData($tInfo, "ActionX") & @LF & _
;~                                                         "-->ActionY:" & @TAB & DllStructGetData($tInfo, "ActionY") & @LF & _
;~                                                         "-->Param:" & @TAB & DllStructGetData($tInfo, "Param"))
;~                                         Return True ; To suppress subsequent $LVN_DELETEITEM messages
;~                                         ;Return False ; To receive subsequent $LVN_DELETEITEM messages
;~                                 Case $LVN_DELETEITEM ; An item is about to be deleted
;~                                         $tInfo = DllStructCreate($tagNMLISTVIEW, $ilParam)
;~                                         _DebugPrint("$LVN_DELETEITEM" & @LF & "--> hWndFrom:" & @TAB & $hWndFrom & @LF & _
;~                                                         "-->IDFrom:" & @TAB & $iIDFrom & @LF & _
;~                                                         "-->Code:" & @TAB & $iCode & @LF & _
;~                                                         "-->Item:" & @TAB & DllStructGetData($tInfo, "Item") & @LF & _
;~                                                         "-->SubItem:" & @TAB & DllStructGetData($tInfo, "SubItem") & @LF & _
;~                                                         "-->NewState:" & @TAB & DllStructGetData($tInfo, "NewState") & @LF & _
;~                                                         "-->OldState:" & @TAB & DllStructGetData($tInfo, "OldState") & @LF & _
;~                                                         "-->Changed:" & @TAB & DllStructGetData($tInfo, "Changed") & @LF & _
;~                                                         "-->ActionX:" & @TAB & DllStructGetData($tInfo, "ActionX") & @LF & _
;~                                                         "-->ActionY:" & @TAB & DllStructGetData($tInfo, "ActionY") & @LF & _
;~                                                         "-->Param:" & @TAB & DllStructGetData($tInfo, "Param"))
;~                                         ; No return value
;~                                 Case $LVN_ENDLABELEDIT ; The end of label editing for an item
;~                                         $tInfo = DllStructCreate($tagNMLVDISPINFO, $ilParam)
;~                                         $tBuffer = DllStructCreate("char Text[" & DllStructGetData($tInfo, "TextMax") & "]", DllStructGetData($tInfo, "Text"))
;~                                         _DebugPrint("$LVN_ENDLABELEDIT" & @LF & "--> hWndFrom:" & @TAB & $hWndFrom & @LF & _
;~                                                         "-->IDFrom:" & @TAB & $iIDFrom & @LF & _
;~                                                         "-->Code:" & @TAB & $iCode & @LF & _
;~                                                         "-->Mask:" & @TAB & DllStructGetData($tInfo, "Mask") & @LF & _
;~                                                         "-->Item:" & @TAB & DllStructGetData($tInfo, "Item") & @LF & _
;~                                                         "-->SubItem:" & @TAB & DllStructGetData($tInfo, "SubItem") & @LF & _
;~                                                         "-->State:" & @TAB & DllStructGetData($tInfo, "State") & @LF & _
;~                                                         "-->StateMask:" & @TAB & DllStructGetData($tInfo, "StateMask") & @LF & _
;~                                                         "-->Text:" & @TAB & DllStructGetData($tBuffer, "Text") & @LF & _
;~                                                         "-->TextMax:" & @TAB & DllStructGetData($tInfo, "TextMax") & @LF & _
;~                                                         "-->Image:" & @TAB & DllStructGetData($tInfo, "Image") & @LF & _
;~                                                         "-->Param:" & @TAB & DllStructGetData($tInfo, "Param") & @LF & _
;~                                                         "-->Indent:" & @TAB & DllStructGetData($tInfo, "Indent") & @LF & _
;~                                                         "-->GroupID:" & @TAB & DllStructGetData($tInfo, "GroupID") & @LF & _
;~                                                         "-->Columns:" & @TAB & DllStructGetData($tInfo, "Columns") & @LF & _
;~                                                         "-->pColumns:" & @TAB & DllStructGetData($tInfo, "pColumns"))
;~                                         ; If Text is not empty, return True to set the item's label to the edited text, return false to reject it
;~                                         ; If Text is empty the return value is ignored
;~                                         Return True
;~                                 Case $LVN_ENDSCROLL ; A scrolling operation ends, Minium OS WinXP
;~                                         $tInfo = DllStructCreate($tagNMLVSCROLL, $ilParam)
;~                                         _DebugPrint("$LVN_ENDSCROLL" & @LF & "--> hWndFrom:" & @TAB & $hWndFrom & @LF & _
;~                                                         "-->IDFrom:" & @TAB & $iIDFrom & @LF & _
;~                                                         "-->Code:" & @TAB & $iCode & @LF & _
;~                                                         "-->DX:" & @TAB & DllStructGetData($tInfo, "DX") & @LF & _
;~                                                         "-->DY:" & @TAB & DllStructGetData($tInfo, "DY"))
;~                                         ; No return value
;~                                 Case $LVN_GETDISPINFO ; Provide information needed to display or sort a list-view item
;~                                         $tInfo = DllStructCreate($tagNMLVDISPINFO, $ilParam)
;~                                         $tBuffer = DllStructCreate("char Text[" & DllStructGetData($tInfo, "TextMax") & "]", DllStructGetData($tInfo, "Text"))
;~                                         _DebugPrint("$LVN_GETDISPINFO" & @LF & "--> hWndFrom:" & @TAB & $hWndFrom & @LF & _
;~                                                         "-->IDFrom:" & @TAB & $iIDFrom & @LF & _
;~                                                         "-->Code:" & @TAB & $iCode & @LF & _
;~                                                         "-->Mask:" & @TAB & DllStructGetData($tInfo, "Mask") & @LF & _
;~                                                         "-->Item:" & @TAB & DllStructGetData($tInfo, "Item") & @LF & _
;~                                                         "-->SubItem:" & @TAB & DllStructGetData($tInfo, "SubItem") & @LF & _
;~                                                         "-->State:" & @TAB & DllStructGetData($tInfo, "State") & @LF & _
;~                                                         "-->StateMask:" & @TAB & DllStructGetData($tInfo, "StateMask") & @LF & _
;~                                                         "-->Text:" & @TAB & DllStructGetData($tBuffer, "Text") & @LF & _
;~                                                         "-->TextMax:" & @TAB & DllStructGetData($tInfo, "TextMax") & @LF & _
;~                                                         "-->Image:" & @TAB & DllStructGetData($tInfo, "Image") & @LF & _
;~                                                         "-->Param:" & @TAB & DllStructGetData($tInfo, "Param") & @LF & _
;~                                                         "-->Indent:" & @TAB & DllStructGetData($tInfo, "Indent") & @LF & _
;~                                                         "-->GroupID:" & @TAB & DllStructGetData($tInfo, "GroupID") & @LF & _
;~                                                         "-->Columns:" & @TAB & DllStructGetData($tInfo, "Columns") & @LF & _
;~                                                         "-->pColumns:" & @TAB & DllStructGetData($tInfo, "pColumns"))
;~                                         ; No return value
;~                                 Case $LVN_GETINFOTIP ; Sent by a large icon view list-view control that has the $LVS_EX_INFOTIP extended style
;~                                         $tInfo = DllStructCreate($tagNMLVGETINFOTIP, $ilParam)
;~                                         $tBuffer = DllStructCreate("char Text[" & DllStructGetData($tInfo, "TextMax") & "]", DllStructGetData($tInfo, "Text"))
;~                                         _DebugPrint("$LVN_GETINFOTIP" & @LF & "--> hWndFrom:" & @TAB & $hWndFrom & @LF & _
;~                                                         "-->IDFrom:" & @TAB & $iIDFrom & @LF & _
;~                                                         "-->Code:" & @TAB & $iCode & @LF & _
;~                                                         "-->Flags:" & @TAB & DllStructGetData($tInfo, "Flags") & @LF & _
;~                                                         "-->Text:" & @TAB & DllStructGetData($tBuffer, "Text") & @LF & _
;~                                                         "-->TextMax:" & @TAB & DllStructGetData($tInfo, "TextMax") & @LF & _
;~                                                         "-->Item:" & @TAB & DllStructGetData($tInfo, "Item") & @LF & _
;~                                                         "-->SubItem:" & @TAB & DllStructGetData($tInfo, "SubItem") & @LF & _
;~                                                         "-->lParam:" & @TAB & DllStructGetData($tInfo, "lParam"))
;~                                         ; No return value
;~                                 Case $LVN_HOTTRACK ; Sent by a list-view control when the user moves the mouse over an item
;~                                         $tInfo = DllStructCreate($tagNMLISTVIEW, $ilParam)
;~                                         _DebugPrint("$LVN_HOTTRACK" & @LF & "--> hWndFrom:" & @TAB & $hWndFrom & @LF & _
;~                                                         "-->IDFrom:" & @TAB & $iIDFrom & @LF & _
;~                                                         "-->Code:" & @TAB & $iCode & @LF & _
;~                                                         "-->Item:" & @TAB & DllStructGetData($tInfo, "Item") & @LF & _
;~                                                         "-->SubItem:" & @TAB & DllStructGetData($tInfo, "SubItem") & @LF & _
;~                                                         "-->NewState:" & @TAB & DllStructGetData($tInfo, "NewState") & @LF & _
;~                                                         "-->OldState:" & @TAB & DllStructGetData($tInfo, "OldState") & @LF & _
;~                                                         "-->Changed:" & @TAB & DllStructGetData($tInfo, "Changed") & @LF & _
;~                                                         "-->ActionX:" & @TAB & DllStructGetData($tInfo, "ActionX") & @LF & _
;~                                                         "-->ActionY:" & @TAB & DllStructGetData($tInfo, "ActionY") & @LF & _
;~                                                         "-->Param:" & @TAB & DllStructGetData($tInfo, "Param"))
;~                                         Return 0 ; allow the list view to perform its normal track select processing.
;~                                         ;Return 1 ; the item will not be selected.
;~                                 Case $LVN_INSERTITEM ; A new item was inserted
;~                                         $tInfo = DllStructCreate($tagNMLISTVIEW, $ilParam)
;~                                         _DebugPrint("$LVN_INSERTITEM" & @LF & "--> hWndFrom:" & @TAB & $hWndFrom & @LF & _
;~                                                         "-->IDFrom:" & @TAB & $iIDFrom & @LF & _
;~                                                         "-->Code:" & @TAB & $iCode & @LF & _
;~                                                         "-->Item:" & @TAB & DllStructGetData($tInfo, "Item") & @LF & _
;~                                                         "-->SubItem:" & @TAB & DllStructGetData($tInfo, "SubItem") & @LF & _
;~                                                         "-->NewState:" & @TAB & DllStructGetData($tInfo, "NewState") & @LF & _
;~                                                         "-->OldState:" & @TAB & DllStructGetData($tInfo, "OldState") & @LF & _
;~                                                         "-->Changed:" & @TAB & DllStructGetData($tInfo, "Changed") & @LF & _
;~                                                         "-->ActionX:" & @TAB & DllStructGetData($tInfo, "ActionX") & @LF & _
;~                                                         "-->ActionY:" & @TAB & DllStructGetData($tInfo, "ActionY") & @LF & _
;~                                                         "-->Param:" & @TAB & DllStructGetData($tInfo, "Param"))
;~                                         ; No return value
;~                                 Case $LVN_ITEMACTIVATE ; Sent by a list-view control when the user activates an item
;~                                         $tInfo = DllStructCreate($tagNMITEMACTIVATE, $ilParam)
;~                                         _DebugPrint("$LVN_ITEMACTIVATE" & @LF & "--> hWndFrom:" & @TAB & $hWndFrom & @LF & _
;~                                                         "-->IDFrom:" & @TAB & $iIDFrom & @LF & _
;~                                                         "-->Code:" & @TAB & $iCode & @LF & _
;~                                                         "-->Index:" & @TAB & DllStructGetData($tInfo, "Index") & @LF & _
;~                                                         "-->SubItem:" & @TAB & DllStructGetData($tInfo, "SubItem") & @LF & _
;~                                                         "-->NewState:" & @TAB & DllStructGetData($tInfo, "NewState") & @LF & _
;~                                                         "-->OldState:" & @TAB & DllStructGetData($tInfo, "OldState") & @LF & _
;~                                                         "-->Changed:" & @TAB & DllStructGetData($tInfo, "Changed") & @LF & _
;~                                                         "-->ActionX:" & @TAB & DllStructGetData($tInfo, "ActionX") & @LF & _
;~                                                         "-->ActionY:" & @TAB & DllStructGetData($tInfo, "ActionY") & @LF & _
;~                                                         "-->lParam:" & @TAB & DllStructGetData($tInfo, "lParam") & @LF & _
;~                                                         "-->KeyFlags:" & @TAB & DllStructGetData($tInfo, "KeyFlags"))
;~                                         Return 0
;~                                 Case $LVN_ITEMCHANGED ; An item has changed
;~                                         $tInfo = DllStructCreate($tagNMLISTVIEW, $ilParam)
;~                                         _DebugPrint("$LVN_ITEMCHANGED" & @LF & "--> hWndFrom:" & @TAB & $hWndFrom & @LF & _
;~                                                         "-->IDFrom:" & @TAB & $iIDFrom & @LF & _
;~                                                         "-->Code:" & @TAB & $iCode & @LF & _
;~                                                         "-->Item:" & @TAB & DllStructGetData($tInfo, "Item") & @LF & _
;~                                                         "-->SubItem:" & @TAB & DllStructGetData($tInfo, "SubItem") & @LF & _
;~                                                         "-->NewState:" & @TAB & DllStructGetData($tInfo, "NewState") & @LF & _
;~                                                         "-->OldState:" & @TAB & DllStructGetData($tInfo, "OldState") & @LF & _
;~                                                         "-->Changed:" & @TAB & DllStructGetData($tInfo, "Changed") & @LF & _
;~                                                         "-->ActionX:" & @TAB & DllStructGetData($tInfo, "ActionX") & @LF & _
;~                                                         "-->ActionY:" & @TAB & DllStructGetData($tInfo, "ActionY") & @LF & _
;~                                                         "-->Param:" & @TAB & DllStructGetData($tInfo, "Param"))
;~                                         ; No return value
;~                                 Case $LVN_ITEMCHANGING ; An item is changing
;~                                         $tInfo = DllStructCreate($tagNMLISTVIEW, $ilParam)
;~                                         _DebugPrint("$LVN_ITEMCHANGING" & @LF & "--> hWndFrom:" & @TAB & $hWndFrom & @LF & _
;~                                                         "-->IDFrom:" & @TAB & $iIDFrom & @LF & _
;~                                                         "-->Code:" & @TAB & $iCode & @LF & _
;~                                                         "-->Item:" & @TAB & DllStructGetData($tInfo, "Item") & @LF & _
;~                                                         "-->SubItem:" & @TAB & DllStructGetData($tInfo, "SubItem") & @LF & _
;~                                                         "-->NewState:" & @TAB & DllStructGetData($tInfo, "NewState") & @LF & _
;~                                                         "-->OldState:" & @TAB & DllStructGetData($tInfo, "OldState") & @LF & _
;~                                                         "-->Changed:" & @TAB & DllStructGetData($tInfo, "Changed") & @LF & _
;~                                                         "-->ActionX:" & @TAB & DllStructGetData($tInfo, "ActionX") & @LF & _
;~                                                         "-->ActionY:" & @TAB & DllStructGetData($tInfo, "ActionY") & @LF & _
;~                                                         "-->Param:" & @TAB & DllStructGetData($tInfo, "Param"))
;~                                         Return True ; prevent the change
;~                                         ;Return False ; allow the change
                                Case $LVN_KEYDOWN ; A key has been pressed
                                        $tInfo = DllStructCreate($tagNMLVKEYDOWN, $ilParam)
                                        _DebugPrint("$LVN_KEYDOWN" & @LF & "--> hWndFrom:" & @TAB & $hWndFrom & @LF & _
                                                        "-->IDFrom:" & @TAB & $iIDFrom & @LF & _
                                                        "-->Code:" & @TAB & $iCode & @LF & _
                                                        "-->VKey:" & @TAB & DllStructGetData($tInfo, "VKey") & @LF & _
                                                        "-->Flags:" & @TAB & DllStructGetData($tInfo, "Flags"))
                                        ; No return value
;~                                 Case $LVN_MARQUEEBEGIN ; A bounding box (marquee) selection has begun
;~                                         _DebugPrint("$LVN_MARQUEEBEGIN" & @LF & "--> hWndFrom:" & @TAB & $hWndFrom & @LF & _
;~                                                         "-->IDFrom:" & @TAB & $iIDFrom & @LF & _
;~                                                         "-->Code:" & @TAB & $iCode)
;~                                         Return 0 ; accept the message
;~                                         ;Return 1 ; quit the bounding box selection
;~                                 Case $LVN_SETDISPINFO ; Update the information it maintains for an item
;~                                         $tInfo = DllStructCreate($tagNMLVDISPINFO, $ilParam)
;~                                         $tBuffer = DllStructCreate("char Text[" & DllStructGetData($tInfo, "TextMax") & "]", DllStructGetData($tInfo, "Text"))
;~                                         _DebugPrint("$LVN_SETDISPINFO" & @LF & "--> hWndFrom:" & @TAB & $hWndFrom & @LF & _
;~                                                         "-->IDFrom:" & @TAB & $iIDFrom & @LF & _
;~                                                         "-->Code:" & @TAB & $iCode & @LF & _
;~                                                         "-->Mask:" & @TAB & DllStructGetData($tInfo, "Mask") & @LF & _
;~                                                         "-->Item:" & @TAB & DllStructGetData($tInfo, "Item") & @LF & _
;~                                                         "-->SubItem:" & @TAB & DllStructGetData($tInfo, "SubItem") & @LF & _
;~                                                         "-->State:" & @TAB & DllStructGetData($tInfo, "State") & @LF & _
;~                                                         "-->StateMask:" & @TAB & DllStructGetData($tInfo, "StateMask") & @LF & _
;~                                                         "-->Text:" & @TAB & DllStructGetData($tBuffer, "Text") & @LF & _
;~                                                         "-->TextMax:" & @TAB & DllStructGetData($tInfo, "TextMax") & @LF & _
;~                                                         "-->Image:" & @TAB & DllStructGetData($tInfo, "Image") & @LF & _
;~                                                         "-->Param:" & @TAB & DllStructGetData($tInfo, "Param") & @LF & _
;~                                                         "-->Indent:" & @TAB & DllStructGetData($tInfo, "Indent") & @LF & _
;~                                                         "-->GroupID:" & @TAB & DllStructGetData($tInfo, "GroupID") & @LF & _
;~                                                         "-->Columns:" & @TAB & DllStructGetData($tInfo, "Columns") & @LF & _
;~                                                         "-->pColumns:" & @TAB & DllStructGetData($tInfo, "pColumns"))
;~                                         ; No return value
                                Case $NM_CLICK ; Sent by a list-view control when the user clicks an item with the left mouse button
                                        $tInfo = DllStructCreate($tagNMITEMACTIVATE, $ilParam)
                                        _DebugPrint("$NM_CLICK" & @LF & "--> hWndFrom:" & @TAB & $hWndFrom & @LF & _
                                                        "-->IDFrom:" & @TAB & $iIDFrom & @LF & _
                                                        "-->Code:" & @TAB & $iCode & @LF & _
                                                        "-->Index:" & @TAB & DllStructGetData($tInfo, "Index") & @LF & _
                                                        "-->SubItem:" & @TAB & DllStructGetData($tInfo, "SubItem") & @LF & _
                                                        "-->NewState:" & @TAB & DllStructGetData($tInfo, "NewState") & @LF & _
                                                        "-->OldState:" & @TAB & DllStructGetData($tInfo, "OldState") & @LF & _
                                                        "-->Changed:" & @TAB & DllStructGetData($tInfo, "Changed") & @LF & _
                                                        "-->ActionX:" & @TAB & DllStructGetData($tInfo, "ActionX") & @LF & _
                                                        "-->ActionY:" & @TAB & DllStructGetData($tInfo, "ActionY") & @LF & _
                                                        "-->lParam:" & @TAB & DllStructGetData($tInfo, "lParam") & @LF & _
                                                        "-->KeyFlags:" & @TAB & DllStructGetData($tInfo, "KeyFlags"))
                                        ; No return value
                                Case $NM_DBLCLK ; Sent by a list-view control when the user double-clicks an item with the left mouse button
                                        $tInfo = DllStructCreate($tagNMITEMACTIVATE, $ilParam)
                                        _DebugPrint("$NM_DBLCLK" & @LF & "--> hWndFrom:" & @TAB & $hWndFrom & @LF & _
                                                        "-->IDFrom:" & @TAB & $iIDFrom & @LF & _
                                                        "-->Code:" & @TAB & $iCode & @LF & _
                                                        "-->Index:" & @TAB & DllStructGetData($tInfo, "Index") & @LF & _
                                                        "-->SubItem:" & @TAB & DllStructGetData($tInfo, "SubItem") & @LF & _
                                                        "-->NewState:" & @TAB & DllStructGetData($tInfo, "NewState") & @LF & _
                                                        "-->OldState:" & @TAB & DllStructGetData($tInfo, "OldState") & @LF & _
                                                        "-->Changed:" & @TAB & DllStructGetData($tInfo, "Changed") & @LF & _
                                                        "-->ActionX:" & @TAB & DllStructGetData($tInfo, "ActionX") & @LF & _
                                                        "-->ActionY:" & @TAB & DllStructGetData($tInfo, "ActionY") & @LF & _
                                                        "-->lParam:" & @TAB & DllStructGetData($tInfo, "lParam") & @LF & _
                                                        "-->KeyFlags:" & @TAB & DllStructGetData($tInfo, "KeyFlags"))
                                        ; No return value
;~                                 Case $NM_HOVER ; Sent by a list-view control when the mouse hovers over an item
;~                                         _DebugPrint("$NM_HOVER" & @LF & "--> hWndFrom:" & @TAB & $hWndFrom & @LF & _
;~                                                         "-->IDFrom:" & @TAB & $iIDFrom & @LF & _
;~                                                         "-->Code:" & @TAB & $iCode)
;~                                         Return 0 ; process the hover normally
;~                                         ;Return 1 ; prevent the hover from being processed
                                Case $NM_KILLFOCUS ; The control has lost the input focus
                                        _DebugPrint("$NM_KILLFOCUS" & @LF & "--> hWndFrom:" & @TAB & $hWndFrom & @LF & _
                                                        "-->IDFrom:" & @TAB & $iIDFrom & @LF & _
                                                        "-->Code:" & @TAB & $iCode)
                                        ; No return value
                                Case $NM_RCLICK ; Sent by a list-view control when the user clicks an item with the right mouse button
                                        $tInfo = DllStructCreate($tagNMITEMACTIVATE, $ilParam)
                                        _DebugPrint("$NM_RCLICK" & @LF & "--> hWndFrom:" & @TAB & $hWndFrom & @LF & _
                                                        "-->IDFrom:" & @TAB & $iIDFrom & @LF & _
                                                        "-->Code:" & @TAB & $iCode & @LF & _
                                                        "-->Index:" & @TAB & DllStructGetData($tInfo, "Index") & @LF & _
                                                        "-->SubItem:" & @TAB & DllStructGetData($tInfo, "SubItem") & @LF & _
                                                        "-->NewState:" & @TAB & DllStructGetData($tInfo, "NewState") & @LF & _
                                                        "-->OldState:" & @TAB & DllStructGetData($tInfo, "OldState") & @LF & _
                                                        "-->Changed:" & @TAB & DllStructGetData($tInfo, "Changed") & @LF & _
                                                        "-->ActionX:" & @TAB & DllStructGetData($tInfo, "ActionX") & @LF & _
                                                        "-->ActionY:" & @TAB & DllStructGetData($tInfo, "ActionY") & @LF & _
                                                        "-->lParam:" & @TAB & DllStructGetData($tInfo, "lParam") & @LF & _
                                                        "-->KeyFlags:" & @TAB & DllStructGetData($tInfo, "KeyFlags"))
                                        ;Return 1 ; not to allow the default processing
                                        Return 0 ; allow the default processing
                                Case $NM_RDBLCLK ; Sent by a list-view control when the user double-clicks an item with the right mouse button
                                        $tInfo = DllStructCreate($tagNMITEMACTIVATE, $ilParam)
                                        _DebugPrint("$NM_RDBLCLK" & @LF & "--> hWndFrom:" & @TAB & $hWndFrom & @LF & _
                                                        "-->IDFrom:" & @TAB & $iIDFrom & @LF & _
                                                        "-->Code:" & @TAB & $iCode & @LF & _
                                                        "-->Index:" & @TAB & DllStructGetData($tInfo, "Index") & @LF & _
                                                        "-->SubItem:" & @TAB & DllStructGetData($tInfo, "SubItem") & @LF & _
                                                        "-->NewState:" & @TAB & DllStructGetData($tInfo, "NewState") & @LF & _
                                                        "-->OldState:" & @TAB & DllStructGetData($tInfo, "OldState") & @LF & _
                                                        "-->Changed:" & @TAB & DllStructGetData($tInfo, "Changed") & @LF & _
                                                        "-->ActionX:" & @TAB & DllStructGetData($tInfo, "ActionX") & @LF & _
                                                        "-->ActionY:" & @TAB & DllStructGetData($tInfo, "ActionY") & @LF & _
                                                        "-->lParam:" & @TAB & DllStructGetData($tInfo, "lParam") & @LF & _
                                                        "-->KeyFlags:" & @TAB & DllStructGetData($tInfo, "KeyFlags"))
                                        ; No return value
                                Case $NM_RETURN ; The control has the input focus and that the user has pressed the ENTER key
                                        _DebugPrint("$NM_RETURN" & @LF & "--> hWndFrom:" & @TAB & $hWndFrom & @LF & _
                                                        "-->IDFrom:" & @TAB & $iIDFrom & @LF & _
                                                        "-->Code:" & @TAB & $iCode)
                                        ; No return value
                                Case $NM_SETFOCUS ; The control has received the input focus
                                        _DebugPrint("$NM_SETFOCUS" & @LF & "--> hWndFrom:" & @TAB & $hWndFrom & @LF & _
                                                        "-->IDFrom:" & @TAB & $iIDFrom & @LF & _
                                                        "-->Code:" & @TAB & $iCode)
                                        ; No return value
                        EndSwitch
        EndSwitch
        Return $GUI_RUNDEFMSG
EndFunc   ;==>WM_NOTIFY

Func _DebugPrint($s_text, $line = @ScriptLineNumber)
        ConsoleWrite( _
                        "!===========================================================" & @LF & _
                        "+======================================================" & @LF & _
                        "-->Line(" & StringFormat("%04d", $line) & "):" & @TAB & $s_text & @LF & _
                        "+======================================================" & @LF)
EndFunc   ;==>_DebugPrint
发表于 2011-3-12 15:14:16 | 显示全部楼层
P版的代码真吓人啊
发表于 2011-3-12 15:40:34 | 显示全部楼层
这代码长得吓人啊
发表于 2011-3-22 09:57:38 | 显示全部楼层
这一个问题弄这么常代码。。
您需要登录后才可以回帖 登录 | 加入

本版积分规则

QQ|手机版|小黑屋|AUTOIT CN ( 鲁ICP备19019924号-1 )谷歌 百度

GMT+8, 2024-9-23 01:20 , Processed in 0.075038 second(s), 19 queries .

Powered by Discuz! X3.5 Licensed

© 2001-2024 Discuz! Team.

快速回复 返回顶部 返回列表