yao1377 发表于 2010-9-27 03:13:07

_GUICtrlComboBoxEx_Create 如何改變字體大小【已解决】

本帖最后由 yao1377 于 2010-9-27 12:31 编辑

使用 _GUICtrlComboBoxEx_Create
怎麼改變字體大小?

問題己解決
感謝 pusofalse!

pusofalse 发表于 2010-9-27 03:45:40

#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

006001 发表于 2010-9-27 09:29:32

版主非常热心,也上我受益匪浅。

gto250 发表于 2011-3-4 20:47:50

翻老帖也能得到好东西!

xyhqqaa 发表于 2011-12-29 20:39:23

谢谢分享、、、、
页: [1]
查看完整版本: _GUICtrlComboBoxEx_Create 如何改變字體大小【已解决】