ListView显示
#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 编辑 ] _GUICtrlListView_HideColumn这个函数只是把COLUMN的WIDTH设置成0
知道这个就很简单了
用_GUICtrlListView_SetColumnWidth设置回原来的值就“重新显示”了 谢谢已经搞好了
页:
[1]