- Сообщения
- 7,790
- Репутация
- 2,322
Похоже, нашел баг. Кликайте в следующем коде по строкам в ListView:
Код:
#include <GuiListView.au3>
#include <GUIConstantsEx.au3>
$hGUI = GUICreate('ListView', 200, 200)
$idLV = GUICtrlCreateListView('Column', 10, 40, 180, 150)
$idBtn = GUICtrlCreateButton('Test', 50, 10, 100, 20)
For $i = 0 To 9
_GUICtrlListView_InsertItem($idLV, 'Item_' & $i, -1, -1, $idBtn); параметр = $idBtn
Next
GUISetState()
While 1
Switch GUIGetMsg()
Case $GUI_EVENT_CLOSE
Exit
Case $idBtn
MsgBox(64, 'Info', 'Button click or ListView item?', 0, $hGUI)
EndSwitch
WEnd