_GUICtrlComboBoxEx_Create 如何改變字體大小【已解决】
本帖最后由 yao1377 于 2010-9-27 12:31 编辑使用 _GUICtrlComboBoxEx_Create
怎麼改變字體大小?
問題己解決
感謝 pusofalse! #include <GUIComboBox.au3>
#include <GUIConstants.au3>
#include <WindowsConstants.au3>
$hGUI = GUICreate("Test", 400, 300)
GUICtrlCreateLabel("test", 20, 20, 90, 20)
GUICtrlSetFont(-1, 20, 800, 10, "Tahoma")
GUICtrlSetState(-1, $GUI_HIDE)
$hFont = GUICtrlSendMsg(-1, $WM_GETFONT, 0, 0)
$hCombo = _GUICtrlComboBox_Create($hGUI, "", 50, 20, 240, 20, 3)
_GUICtrlComboBox_AddString($hCombo, "Item 1")
_GUICtrlComboBox_AddString($hCombo, "Item 2")
_SendMessage($hCombo, $WM_SETFONT, $hFont, 1)
GUISetState()
While GUIGetMsg() <> -3
WEnd
版主非常热心,也上我受益匪浅。 翻老帖也能得到好东西! 谢谢分享、、、、
页:
[1]