找回密码
 加入
搜索
查看: 1962|回复: 2

ListView显示

[复制链接]
发表于 2008-7-11 02:25:48 | 显示全部楼层 |阅读模式
#include <GuiConstantsEx.au3>
#include <GuiListView.au3>
Opt('MustDeclareVars', 1)
$Debug_LV = False ; Check ClassName being passed to ListView functions, set to True and use a handle to another control to see it work
_Main()
Func _Main()
        Local $hListView
       
        GUICreate("ListView Hide Column", 400, 300)
        $hListView = GUICtrlCreateListView("", 2, 2, 394, 268)
        GUISetState()

        ; Add columns
        _GUICtrlListView_AddColumn($hListView, "Column 1", 100)
        _GUICtrlListView_AddColumn($hListView, "Column 2", 100)
        _GUICtrlListView_AddColumn($hListView, "Column 3", 100)

        MsgBox(4160, "Information", "Hiding Column 2")
        MsgBox(4160, "Information", "Column 2 Hid: " & _GUICtrlListView_HideColumn($hListView, 0))

        ; Loop until user exits
        Do
        Until GUIGetMsg() = $GUI_EVENT_CLOSE
        GUIDelete()
EndFunc   ;==>_Main

利用此方法隐藏的表怎么能显示出来

[ 本帖最后由 小三 于 2008-7-11 12:32 编辑 ]
发表于 2008-7-11 11:36:09 | 显示全部楼层
_GUICtrlListView_HideColumn这个函数只是把COLUMN的WIDTH设置成0
知道这个就很简单了
用_GUICtrlListView_SetColumnWidth设置回原来的值就“重新显示”了
 楼主| 发表于 2008-7-11 12:49:59 | 显示全部楼层
谢谢已经搞好了
您需要登录后才可以回帖 登录 | 加入

本版积分规则

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

GMT+8, 2024-5-17 20:06 , Processed in 0.069236 second(s), 20 queries .

Powered by Discuz! X3.5 Licensed

© 2001-2024 Discuz! Team.

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