找回密码
 加入
搜索
查看: 10822|回复: 11

[AU3基础] 二维数组怎样创建listview项目【已解决】

  [复制链接]
发表于 2014-7-5 21:03:52 | 显示全部楼层 |阅读模式
本帖最后由 dunphy 于 2014-9-2 18:51 编辑

大家都知道一维数组创建项图列和项目,先用到_GUICtrlListView_AddColumn 来创建列,再用GUICtrlCreateListViewItem 创建 ListView 的内容,二维数组怎么办呢?列如:比如有十列
local $arrayinfo=GUICtrlCreateListViewItem($Array[$i][1]&"|"&$Array[$i][2]&"|"&$Array[$i][3]&"|"&$Array[$i][4]&"|"&$Array[$i][5]&"|"&$Array[$i][6]&"|"&$Array[$i][7]&"|"&$Array[$i][8]&"|"&$Array[$i][9]&"|"&$Array[$i][10])   ;如果有一百列怎么办呢??有没有简便的输入到listview控件项目???
最后自行解决。
发表于 2014-7-6 10:30:45 | 显示全部楼层
for循环啊,
发表于 2014-7-7 10:25:35 | 显示全部楼层
回复学习。。。。。。。。。。。。。。
 楼主| 发表于 2014-7-20 21:41:51 | 显示全部楼层
像上面,那是十列,如果是100列的样子,怎么样书写???
发表于 2014-7-21 12:18:01 | 显示全部楼层
用_GUICtrlListView_AddItem()吧,加上FOR循环。
发表于 2014-7-21 12:39:15 | 显示全部楼层
如果只是显示的,导入sqlite,直接显示
 楼主| 发表于 2014-7-26 14:42:04 | 显示全部楼层
回复 2# nqawen
这样写吗,如第1列
local $j,$i,
for $j=1 to 100
    ........
next


.......里该如何写
 楼主| 发表于 2014-7-26 14:42:20 | 显示全部楼层
回复 5# shqf


这样写吗,如第1列
local $j,$i,
for $j=1 to 100
    ........
next


.......里该如何写
发表于 2014-7-28 11:45:11 | 显示全部楼层
是列啊,那直接用_GUICtrlListView_AddArray就行了
发表于 2014-8-2 08:44:14 | 显示全部楼层
回复 8# dunphy
你可以看看 au3的自学手册,上面有用for循环来实现 的
发表于 2014-8-2 19:35:16 | 显示全部楼层
本帖最后由 wangms 于 2014-8-2 19:37 编辑

#include <GUIListView.au3>

$hGUI = GUICreate('“, 800, 600, @DesktopWidth / 2 - 400, @DesktopHeight / 2 - 350, -1, 0x00000018)   ;-1, $WS_EX_TOPMOST + $WS_EX_ACCEPTFILES) ;  
$hListView = GUICtrlCreateListView("--|--|--|--|--|--|--|--|--|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-", 17, 35, 766, 276)
_GUICtrlListView_AddArray($hListView, $aList)    ;$aList是数组
GUISetState(@SW_SHOW)
 楼主| 发表于 2014-9-2 19:35:41 | 显示全部楼层
#include <GUIConstantsEx.au3>
#include <GuiListView.au3>

$Debug_LV = False ; 检查传递给 ListView 函数的类名, 设置为真并使用另一控件的句柄可以看出它是否有效

_Main()

Func _Main()
        Local $iI, $iTimer, $hListView

        ; 创建 GUI
        GUICreate("ListView Add Array", 400, 300)
        $hListView = GUICtrlCreateListView("", 2, 2, 394, 268)
        GUISetState()

        ; 添加列

        Local $item[100], $i
        For $i = 0 To 99 Step 1
                _GUICtrlListView_AddColumn($hListView, $i, 100)
        Next
        _GUICtrlListView_SetItemCount($hListView, 1000)

        
        ; 加载100列
        Dim $J = 0, $aItems[200][100]
        For $iI = 0 To UBound($aItems) - 1
                For $J = 0 To 99
                        $aItems[$iI][$J] = "Item " & $iI & "-" & $J
                Next
        Next
        
        $iTimer = TimerInit()
        _GUICtrlListView_AddArray($hListView, $aItems)
        MsgBox(4160, "信息", "Load time: " & TimerDiff($iTimer) / 1000 & " seconds")

        ; 循环直到用户退出
        Do
        Until GUIGetMsg() = $GUI_EVENT_CLOSE
        GUIDelete()
EndFunc   ;==>_Main
您需要登录后才可以回帖 登录 | 加入

本版积分规则

QQ|手机版|小黑屋|AUTOIT CN ( 鲁ICP备19019924号-1 )谷歌 百度

GMT+8, 2024-11-16 14:20 , Processed in 0.077310 second(s), 23 queries .

Powered by Discuz! X3.5 Licensed

© 2001-2024 Discuz! Team.

快速回复 返回顶部 返回列表