VB用的vbnewline在AU3中怎么搞?[已解决]
本帖最后由 拉风晓晓 于 2010-4-23 19:47 编辑按钮文字竖排用,有别的方法也请说说 @CRLF
这个宏行不?
:face (31): 回楼上的,不行 #include <GUIConstantsEx.au3>
#include <GuiButton.au3>
#include <WindowsConstants.au3>
Opt("MustDeclareVars", 1)
Global $btn, $rdo, $chk, $iMemo
; Note the controlId from these buttons can NOT be read with GuiCtrlRead
_Main()
Func _Main()
Local $hGUI
$hGUI = GUICreate("Buttons", 400, 400)
$iMemo = GUICtrlCreateEdit("", 119, 10, 276, 374, $WS_VSCROLL)
GUICtrlSetFont($iMemo, 9, 400, 0, "Courier New")
$btn = _GUICtrlButton_Create($hGUI, "竖"&@CRLF&"排", 10, 10, 90, 50,$BS_MULTILINE);这里指定多行竖排样式
While 1
Switch GUIGetMsg()
Case $GUI_EVENT_CLOSE
ExitLoop
EndSwitch
WEnd
Exit
EndFunc ;==>_Main 本帖最后由 拉风晓晓 于 2010-4-23 19:49 编辑
谢谢楼上的,已经解决,关键是参数$BS_MULTILINE,后来才知道的。
页:
[1]