Что нового

Запуск функции по ENTER в GUICtrlCreateListView

Атос

Новичок
Сообщения
85
Репутация
0
Привет.

Как можно запускать пункты элементов в GUICtrlCreateListView по клавише ENTER?
У меня не получается. Получается только в том случае, когда зажата клавиша ALT, или зажата любая из кнопок мыши.
А мне надо просто, нажал ENTER, и запустилась функция.

Код:
#include <GUIConstantsEx.au3>
#include <GuiListView.au3>
#include <GuiStatusBar.au3>
#include <WindowsConstants.au3>

Global $g_idListView, $g_hStatus

Example()

Func Example()
	Local $hGUI
	$hGUI = GUICreate("ListView Get Hot Item", 392, 322)
	$g_idListView = GUICtrlCreateListView("", 2, 2, 394, 268)
	$g_idListView = GUICtrlGetHandle($g_idListView)
	_GUICtrlListView_SetExtendedListViewStyle($g_idListView, BitOR($LVS_EX_FULLROWSELECT, $LVS_EX_GRIDLINES, $LVS_EX_TRACKSELECT))
	$g_hStatus = _GUICtrlStatusBar_Create($hGUI)
	_GUICtrlStatusBar_SetSimple($g_hStatus, True)
	GUISetState(@SW_SHOW)
	_GUICtrlListView_AddColumn($g_idListView, "Column 1", 100)
	_GUICtrlListView_AddColumn($g_idListView, "Column 2", 100)
	_GUICtrlListView_AddColumn($g_idListView, "Column 3", 100)
	_GUICtrlListView_AddItem($g_idListView, "Row 1: Col 1")
	_GUICtrlListView_AddSubItem($g_idListView, 0, "Row 1: Col 2", 1)
	_GUICtrlListView_AddSubItem($g_idListView, 0, "Row 1: Col 3", 2)
	_GUICtrlListView_AddItem($g_idListView, "Row 2: Col 1")
	_GUICtrlListView_AddSubItem($g_idListView, 1, "Row 2: Col 2", 1)
	_GUICtrlListView_AddItem($g_idListView, "Row 3: Col 1")
	GUIRegisterMsg($WM_NOTIFY, "WM_NOTIFY")
	Do
	Until GUIGetMsg() = $GUI_EVENT_CLOSE
	GUIDelete()
EndFunc

Func ListView_HOTTRACK($iSubItem)
	Local $iHotItem  = _GUICtrlListView_GetHotItem($g_idListView)
	If $iHotItem  <> -1 Then _GUICtrlStatusBar_SetText($g_hStatus, "Hot Item: " & $iHotItem  & " SubItem: " & $iSubItem)
EndFunc

Func WM_NOTIFY($hWnd, $iMsg, $wParam, $lParam)
	#forceref $hWnd, $iMsg, $wParam
	Local $hWndFrom, $iIDFrom, $iCode, $tNMHDR, $hWndListView, $tInfo
	$hWndListView = $g_idListView
	If Not IsHWnd($g_idListView) Then $hWndListView = GUICtrlGetHandle($g_idListView)

; 	$tNMHDR = DllStructCreate($tagNMHDR, $lParam)
	$tNMHDR = DllStructCreate("struct;hwnd hWndFrom;uint_ptr IDFrom;INT Code;endstruct", $lParam)
	$hWndFrom = HWnd(DllStructGetData($tNMHDR, "hWndFrom"))
	$iIDFrom = DllStructGetData($tNMHDR, "IDFrom")
	$iCode = DllStructGetData($tNMHDR, "Code")
	Switch $hWndFrom
		Case $hWndListView
			Switch $iCode
; 				Case 0 - 4 ; The control has the input focus and that the user has pressed the ENTER key
				Case $NM_RETURN ; The control has the input focus and that the user has pressed the ENTER key
MsgBox(0, '111',  '11111111111111111111', 2)
					_DebugPrint("$NM_RETURN" & @CRLF & "--> hWndFrom:" & @TAB & $hWndFrom & @CRLF & _
							"-->IDFrom:" & @TAB & $iIDFrom & @CRLF & _
							"-->Code:" & @TAB & $iCode)
					; No return value
			EndSwitch
	EndSwitch
	Return $GUI_RUNDEFMSG
EndFunc

Func _DebugPrint($s_Text , $sLine = @ScriptLineNumber)
	ConsoleWrite( _
			"!===========================================================" & @CRLF & _
			"+======================================================" & @CRLF & _
			"-->Line(" & StringFormat("%04d", $sLine) & "):" & @TAB & $s_Text  & @CRLF & _
			"+======================================================" & @CRLF)
EndFunc
 

sergioz

Знающий
Сообщения
39
Репутация
5
Код:
Opt('GUIOnEventMode', 1)
HotKeySet('{ENTER}','my_func')

; или так
;	Global $MyHotKeySet[1][2]=[['{Enter}',$id_elements]]
;	GUISetAccelerators($MyHotKeySet)

func my_func()

; содержимое текущей ячейки

GUICtrlRead(GUICtrlRead($Id_listview))

endfunc
 
Автор
А

Атос

Новичок
Сообщения
85
Репутация
0
sergioz, такое не пойдёт. У меня скрипт гораздо сложнее.
Я не могу включать обработку событий GUIOnEventMode.
 
Верх