zhenglei 发表于 2009-3-23 20:14:52

AU3做的GUI 内嵌路径显示方式?

AU3做的GUI 内嵌路径为什么框架里显示的都是图标显示方式都是平铺方式。而不是图标方式如何调整啊 。

这样显示的文件夹 及所有文件都是大图标。。如何 让其显示为 图标方式???

平铺显示方式太难看了。。。


sxd 发表于 2009-3-23 23:28:28

ControlListView ( "窗口标题", "窗口文本", 控件ID, "ViewChange", "视图")

zhenglei 发表于 2009-3-25 10:57:28

ddddddddddddddd

强悍啊。哈哈

jycel 发表于 2009-3-25 14:20:24

原帖由 zhenglei 于 2009-3-23 20:14 发表 http://www.autoitx.com/images/common/back.gif
AU3做的GUI 内嵌路径为什么框架里显示的都是图标显示方式都是平铺方式。而不是图标方式如何调整啊 。

这样显示的文件夹 及所有文件都是大图标。。如何 让其显示为 图标方式???

平铺显示方式太难看了。。 ...
这是那个函数?新手学习下!

sxd 发表于 2009-3-26 02:25:00

http://www.autoitx.com/forum.php?mod=viewthread&tid=5986&extra=page%3D2

59993330 发表于 2009-3-26 20:12:26

能共享下源码吗?

ceoguang 发表于 2009-3-26 21:10:12


$title="测试"
$oIE = ObjCreate("Shell.Explorer.2")
$Form1 = GUICreate($title, 788, 455, 365, 235)
$Button1 = GUICtrlCreateButton("Button1", 8, 8, 64, 64)
$GUIActiveX = GUICtrlCreateObj($oIE, 1, 88, 786, 360)
GUISetState()
$oIE.navigate("c:\")
While 1
        if GUIGetMsg() = -3 Then Exit
WEnd
ControlListView($title, "", $GUIActiveX, "ViewChange", "smallicons")

sxd 发表于 2009-3-26 21:36:52

$title="测试"
$oIE = ObjCreate("Shell.Explorer.2")
$Form1 = GUICreate($title, 788, 455, 365, 235)
$Button1 = GUICtrlCreateButton("Button1", 8, 8, 64, 64)
$GUIActiveX = GUICtrlCreateObj($oIE, 1, 88, 786, 360)
GUISetState()
$oIE.navigate("c:\")
ControlListView($title, "", "SysListView321", "ViewChange", "smallicons")
While 1
        if GUIGetMsg() = -3 Then Exit
WEnd

jycel 发表于 2009-3-26 21:40:43

返回上一步呢? 吃了饭来研究下!

sxd 发表于 2009-3-27 00:38:16

$oIE.GoBack
页: [1]
查看完整版本: AU3做的GUI 内嵌路径显示方式?