欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

函數(shù)說(shuō)明

GUICtrlCreateListViewItem

在GUI上創(chuàng)建一個(gè) ListView 項(xiàng)目控件。

GUICtrlCreateListViewItem ( "文本", listviewID )

 

參數(shù)

文本 由豎線 | 分開(kāi)的子項(xiàng)目文本。
listviewID (此控件)所屬 ListView 控件的ID。

 

返回值

成功: 返回控件標(biāo)識(shí)符(控件ID)。
失。 返回值為0。

 

注意

本函數(shù)用于創(chuàng)建 ListView 項(xiàng)目,創(chuàng)建的項(xiàng)目和普通的控件一樣可以使用 GUICtrlSetData 設(shè)置相關(guān)數(shù)據(jù)。
創(chuàng)建的項(xiàng)目也可以像其它控件一樣使用 GUICtrlDelete 刪除。
ListView 項(xiàng)目可拖放到設(shè)置了 $GUI_ACCEPTFILES 狀態(tài)的編輯框或輸入框控件上。
請(qǐng)查看 GUICtrlCreateListView 了解如何調(diào)整列的大小。

 

相關(guān)

GUICtrlCreateListView, GUICtrlSetData, GUICtrlSetState, GUICtrlDelete, GUIGetMsg, GUICtrlRead

 

示例


#include <GUIConstants.au3>

GUICreate("listview items",220,250, 100,200,-1,$WS_EX_ACCEPTFILES)
GUISetBkColor (0x00E0FFFF)  ; 更改背景顏色

$listview = GuiCtrlCreateListView ("col1  |col2|col3  ",10,10,200,150);,$LVS_SORTDESCENDING)
$button = GuiCtrlCreateButton ("Value?",75,170,70,20)
$item1=GuiCtrlCreateListViewItem("item2|col22|col23",$listview)
$item2=GuiCtrlCreateListViewItem("............item1|col12|col13",$listview)
$item3=GuiCtrlCreateListViewItem("item3|col32|col33",$listview)
$input1=GuiCtrlCreateInput("",20,200, 150)
GuiCtrlSetState(-1,$GUI_ACCEPTFILES)   ; 允許拖放
GuiSetState()
GUICtrlSetData($item2,"|ITEM1",)
GUICtrlSetData($item3,"||COL33",)
GUICtrlDelete($item1)

Do
  $msg = GuiGetMsg ()
    
   Select
      Case $msg = $button
         MsgBox(0,"listview item",GUICtrlRead(GUICtrlRead($listview)),2)
      Case $msg = $listview
         MsgBox(0,"listview", "clicked="& GuiCtrlGetState($listview),2)
   EndSelect
Until $msg = $GUI_EVENT_CLOSE