GUICtrlCreateLabel
创建静态标记(Label)控件.
GUICtrlCreateLabel ( "text", left, top [, width [, height [, style = -1 [, exStyle = -1]]]] )
参数
text
|
控件显示的文本.
|
left
|
控件左侧的位置. 若此值为 -1, 则根据 GUICoordMode() 的设置计算左侧位置.
|
top
|
控件上方的位置. 若此值为 -1, 则根据 GUICoordMode() 的设置计算顶部位置.
|
width
|
[可选] 控件的宽度 (默认文本自动调整适合宽度).
|
height
|
[可选] 控件的高度 (默认文本自动调整适合高度).
|
style
|
[可选] 控件的样式. 查看附录 GUI 控件样式表.
默认样式 ( -1) : 无.
强制样式 : $SS_NOTIFY, $SS_LEFT
|
exStyle
|
[可选] 控件的扩展样式. 查看附录 扩展样式表.
|
返回值
成功:
|
返回控件标识符(控件ID).
|
失败:
|
返回 0.
|
备注
设置或者修改控件信息, 参考 GUICtrlUpdate...() 控件更新控件更新类函数.
要在默认样式上添加新样式, 可使用 BitOR($GUI_SS_DEFAULT_LABEL, 新样式,...) 语句.
使用上面列出的值必须将 #include <StaticConstants.au3> 语句写入脚本中.
默认大小 $GUI_DOCKAUTO 出现的大小和位置.
扩展样式 $GUI_WS_EX_PARENTDRAG 允许拖动没有标题栏(GUICreate() 创建的窗口没有 $WS_CAPTION 样式`)的父窗口.
要设置背景透明,使用 GUICtrlSetBkColor(-1, $GUI_BKCOLOR_TRANSPARENT) 语句.
相关
GUICoordMode (Option), GUICtrlUpdate..., GUIGetMsg
函数示例
#include <GUIConstantsEx.au3>
Example()
Func Example()
GUICreate("My GUI") ; will create a dialog box that when displayed is centered
GUISetHelp("notepad.exe") ; will run notepad if F1 is typed
Local $iOldOpt = Opt("GUICoordMode", 2)
Local $iWidthCell = 70
GUICtrlCreateLabel("Line 1 Cell 1", 10, 30, $iWidthCell) ; first cell 70 width
GUICtrlCreateLabel("Line 2 Cell 1", -1, 0) ; next line
GUICtrlCreateLabel("Line 3 Cell 2", 0, 0) ; next line and next cell
GUICtrlCreateLabel("Line 3 Cell 3", 0, -1) ; next cell same line
GUICtrlCreateLabel("Line 4 Cell 1", -3 * $iWidthCell, 0) ; next line Cell1
GUISetState(@SW_SHOW) ; will display an empty dialog box
; Loop until the user exits.
While 1
Switch GUIGetMsg()
Case $GUI_EVENT_CLOSE
ExitLoop
EndSwitch
WEnd
$iOldOpt = Opt("GUICoordMode", $iOldOpt)
EndFunc ;==>Example
----------------------------------------
|