hxg123 发表于 2009-7-17 13:36:36

GUICtrlCreateGroup()函数 标题如何居中?

本帖最后由 hxg123 于 2009-7-17 23:15 编辑

用FD产生代码,居中样式代码为$BS_CENTER,编译提示未定义,直接定义BS_CENTER=0x0300不起作用,查帮助$BS_CENTER是定义按钮文本居中的。

GUICtrlCreateGroup()的标题文本居中样式代码是什么?()

superflq 发表于 2009-7-17 13:50:58

我也想知道,帮你顶下

lynfr8 发表于 2009-7-17 13:57:14

本帖最后由 lynfr8 于 2009-7-17 19:14 编辑

#include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Form1", 355, 256, 192, 124)
$Group1 = GUICtrlCreateGroup("Group1", 32, 32, 289, 153, $BS_CENTER)
$Checkbox1 = GUICtrlCreateCheckbox("Checkbox1", 128, 88, 81, 49)
GUICtrlCreateGroup("", -99, -99, 1, 1)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
   Exit
EndSwitch
WEnd


如果group里面没有创建其他控件就会报错

superflq 发表于 2009-7-17 14:00:03

GUICtrlCreateGroup("Group1", 32, 32, 289, 153, 0x0300)

这样即可~

hxg123 发表于 2009-7-17 14:13:14

本帖最后由 hxg123 于 2009-7-17 14:18 编辑

确实这样,内部有一个按钮控件就不出错了

Netfox 发表于 2011-1-25 01:37:35

顶。。。。。。。。。。。。。
页: [1]
查看完整版本: GUICtrlCreateGroup()函数 标题如何居中?