1361739590 发表于 2013-2-5 16:03:19

搞定了       GUICtrlCreateList ( "文本", 左侧, 顶部 [, 宽度 [, 高度 [, 样式 [, 扩展样式]]]] )在样式中选择公共样式中的$WS_HSCROLL      0x00100000是可以的   我限制了宽度是300   而设置list宽度为350所以没用

1361739590 发表于 2013-2-5 16:03:37

GUICreate("My GUI list")
$add = GUICtrlCreateButton("Add", 64, 32, 75, 25)
$clear = GUICtrlCreateButton("Clear", 64, 72, 75, 25)
$mylist = GUICtrlCreateList("buttons that have been clicked", 176, 32, 200, 200, 0x00100000)
GUICtrlSetLimit(-1, 300)
GUISetState()

While 1
      $msg = GUIGetMsg()
      Switch $msg
                Case -3
                        Exit
                Case $add
                        GUICtrlSetData($mylist, "You clicked button No1-You clicked button No1|")
                Case $clear
                        GUICtrlSetData($mylist, "")
      EndSwitch
WEnd

pris 发表于 2013-4-6 10:23:47

学习中。。。
页: 1 [2]
查看完整版本: 怎么让List控件出现水平滚动条(已解决)