请教au3中Button文字竖排
$Button1 = GUICtrlCreateButton("计算", 168, 128, 25, 73)请教一下,其中的这个“计算”按钮如果竖排呢? 我明白了。选择BS_MULTILINE就是了。。。。 我也很想知道。 本帖最后由 小A 于 2011-4-14 12:12 编辑
回复 1# binghe
GUICreate('坚立按钮',500,500)
GUICtrlCreateButton('网' & @CRLF & '管' & @CRLF & '联' & @CRLF & '盟',100,100,80,100,0x2000)
GUISetState(@SW_SHOW)
While 1
Sleep(1000)
WEnd
学习了,谢谢楼上的! #include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
GUICreate("按鈕豎排文字", 201, 201, 353, 278)
GUICtrlCreateButton("計算", 88, 32, 25, 81, $BS_MULTILINE)
GUISetState(@SW_SHOW)
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
EndSwitch
WEnd 不错 学习了 哈哈,又学习一招了. 学习了,呵呵,楼主加油 正想知道!谢谢了! 回复 10# liyi-softs
学习了,多谢! 回复 6# binshiwo
按钮的宽度要控制才能显示 加上样式
#include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Form1", 615, 438, 192, 124)
$Button1 = GUICtrlCreateButton("按钮字体怎么打竖", 112, 80, 25, 329, $BS_MULTILINE)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
Case $Button1
MsgBox(0, '', '你点击了按钮', 1)
EndSwitch
WEnd 收藏学习了 还是样式方便些。
页:
[1]