本帖最后由 happytc 于 2013-1-15 14:11 编辑
回复 1# webberliuwei
GUICtrlSetFont是基于API函数 _WinAPI_CreateFont(),所以你需要自己调用它。
另外微软的Listview控件有个著名的bug,就是不能改变字段字的字体大小,若系统主题没有关掉的话
#include <GUIConstantsEx.au3>
#include <GuiListView.au3>
#include <Constants.au3>
#include <WindowsConstants.au3>
#include <FontConstants.au3>
#include <WinAPI.au3>
$hFont = _WinAPI_CreateFont(20, 10, 0, 0, $FW_NORMAL, False, False, False, $DEFAULT_CHARSET, $OUT_DEFAULT_PRECIS, $CLIP_DEFAULT_PRECIS, $DEFAULT_QUALITY, 0, 'Arial')
$gui = GUICreate("ListView Set BkColor", 400, 300)
$hListView = _GUICtrlListView_Create($gui, "", 2, 2, 400, 400)
GUISetState()
_WinAPI_SetFont($hListView, $hFont, True)
_GUICtrlListView_SetBkColor($hListView, $CLR_MONEYGREEN);修改背景颜色
_GUICtrlListView_SetTextColor($hListView, 0xffffff);修改字颜色
_GUICtrlListView_SetTextBkColor($hListView, $CLR_MONEYGREEN);修改字背景颜色
;~ GUICtrlSetFont($hListView, 11, 800, 0, "宋体");这个语句只对 GUICtrlCreateListView生效?如何修改字体大小?
; 添加列
_GUICtrlListView_AddColumn($hListView, "Items", 100)
; 添加项目
_GUICtrlListView_BeginUpdate($hListView)
For $iI = 1 To 10
_GUICtrlListView_AddItem($hListView, "Item " & $iI)
Next
_GUICtrlListView_EndUpdate($hListView)
; 显示颜色
; 循环直到用户退出
Do
Until GUIGetMsg() = $GUI_EVENT_CLOSE
GUIDelete()
|