黑色袜子 发表于 2013-8-18 16:06:55

GUICtrlCreateList 怎么强制换行

#include <GUIConstantsEx.au3>
#include <GUIListBox.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form2 = GUICreate("窗体1", 405, 294, 302, 218)
$ListView1 = GUICtrlCreateList("", 32, 32, 211, 175,BitOR($LBS_NOTIFY, $LBS_SORT, $WS_HSCROLL, $WS_VSCROLL), 0)
_GUICtrlListBox_SetItemHeight($ListView1, 30)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###

_GUICtrlListBox_InsertString($ListView1, 'test'&@crlf&'测试', -1)
_GUICtrlListBox_InsertString($ListView1, 'test(换2行显示第一个无效求方法!)测试', -1)
_GUICtrlListBox_UpdateHScroll($ListView1)
_GUICtrlListBox_SetCurSel($ListView1, _GUICtrlListBox_GetCount($ListView1) - 1)


While 1
        $nMsg = GUIGetMsg()
        Switch $nMsg
                Case $GUI_EVENT_CLOSE
                        Exit

        EndSwitch
WEnd
上面是例子,求方法!

黑色袜子 发表于 2013-8-18 16:14:54


放个图片首页显示下。

李岸 发表于 2013-8-20 08:15:34

$ES_WANTRETURN
页: [1]
查看完整版本: GUICtrlCreateList 怎么强制换行