runking 发表于 2010-9-24 20:46:48

如何向GUICtrlCreateListView中添加复选框[已解决]

本帖最后由 runking 于 2010-9-27 17:09 编辑

如题
自己琢磨了两天,头疼ing……

水木子 发表于 2010-9-24 21:13:03

看看我以前的帖子!
http://www.autoitx.com/thread-9573-1-1.html

runking 发表于 2010-9-25 17:12:15

回复 2# 水木子

收到,谢谢

水木子 发表于 2010-9-25 17:47:36

如果你的问题得到了解决,请在你的标题后面加上[已解决]。

6678720 发表于 2010-10-25 10:48:54

学习了,谢谢各位楼主分享。

a00a00 发表于 2011-3-23 08:38:34

以前的帖子找不到了。

水木子 发表于 2011-3-23 09:06:10

回复 6# a00a00
#include <ListViewConstants.au3>
#include <WindowsConstants.au3>
GUICreate('', 400, 300)
$ListView1 = GUICtrlCreateListView("|", 5, 5, 390, 280, -1, _
                BitOR($WS_EX_CLIENTEDGE, $LVS_EX_CHECKBOXES, $LVS_EX_FULLROWSELECT, $LVS_REPORT));$LVS_EX_CHECKBOXES样式 = 为项目添加复选框
GUICtrlSendMsg(-1, $LVM_SETCOLUMNWIDTH, 0, 350)
GUICtrlCreateListViewItem('1', $ListView1)
GUICtrlCreateListViewItem('2', $ListView1)
GUISetState()

Do
Until GUIGetMsg() = -3       

nxbigdaddy 发表于 2011-4-13 14:19:24

学习了,谢谢各位。

a13701512730 发表于 2011-5-22 19:56:17

the same,学了了。

xhz520 发表于 2011-5-28 06:47:51

学习了,谢谢各位楼主分享。

liyi-softs 发表于 2011-7-1 19:58:32

学习了,谢谢!``

chiiren 发表于 2011-7-7 15:47:51

學習了,謝謝!``
页: [1]
查看完整版本: 如何向GUICtrlCreateListView中添加复选框[已解决]