Local $iIndex = _GUICtrlListView_GetSelectionMark($ListView)
If $iIndex <> -1 Then
Local $sText = ""
For $j = 0 To _GUICtrlListView_GetColumnCount($ListView) - 1
$sText &= _GUICtrlListView_GetItemText($ListView, $iIndex, $j) & " "
Next
MsgBox(0, "选中行", $sText)
EndIf