Label: Difference between revisions
Jump to navigation
Jump to search
m (Category:GUI) |
(Added more description and cleaned up wikitext.) |
||
Line 1: | Line 1: | ||
A | A '''label''' is a [[Graphical User Interface|GUI]] control whose purpose is to display often simple and plain text. A label is often used to display a short, simple description of some aspect of the program's current state or a control's intended purpose among other reasons. | ||
The function for creating a label is {{Help File|GuiCtrlCreateLabel}}. The text of the label can be changed using {{Help File|GuiCtrlSetData}} and read using the {{Help File|GuiCtrlRead}} function. The foreground can be changed with {{Help File|GuiCtrlSetColor}}. The background color can be changed with {{Help File|GuiCtrlSetBKColor}}. The function to change the font face and font size is {{Help File|GUICtrlSetFont}}. | |||
The following example demonstrates the creation of a label. | |||
<syntaxhighlight lang="autoit"> | <syntaxhighlight lang="autoit"> | ||
#include <GUIConstantsEx.au3> | #include <GUIConstantsEx.au3> | ||
Opt( | Opt("MustDeclareVars", 1) | ||
Main() | |||
Func | Func Main() | ||
GUICreate("My GUI") ; will create a dialog box that when displayed is centered | GUICreate("My GUI") ; will create a dialog box that when displayed is centered | ||
GUISetHelp(" | GUISetHelp("Notepad.exe") ; will run notepad if F1 is typed | ||
Opt("GUICoordMode", 2) | Opt("GUICoordMode", 2) | ||
Line 25: | Line 22: | ||
GUICtrlCreateLabel("Line 1 Cell 1", 10, 30, $widthCell) ; first cell 70 width | GUICtrlCreateLabel("Line 1 Cell 1", 10, 30, $widthCell) ; first cell 70 width | ||
GUICtrlCreateLabel("Line 2 Cell 1", -1, 0) ; next line | 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 2", 0, 0) ; next line and next cell | ||
GUICtrlCreateLabel("Line 3 Cell 3", 0, -1) ; next cell same line | GUICtrlCreateLabel("Line 3 Cell 3", 0, -1) ; next cell same line | ||
GUICtrlCreateLabel("Line 4 Cell 1", -3 * $widthCell, 0) ; next line Cell1 | GUICtrlCreateLabel("Line 4 Cell 1", -3 * $widthCell, 0) ; next line Cell1 | ||
GUISetState() ; will display an empty dialog box | GUISetState(@SW_SHOWNORMAL) ; will display an empty dialog box | ||
; Run the GUI until the dialog is closed | ; Run the GUI until the dialog is closed | ||
Do | Do | ||
Until GUIGetMsg() = $GUI_EVENT_CLOSE | Until GUIGetMsg() = $GUI_EVENT_CLOSE | ||
EndFunc ;==>Example | EndFunc ;==>Example | ||
</syntaxhighlight> | </syntaxhighlight> | ||
[[Category:GUI]] | [[Category:GUI]] |
Revision as of 00:12, 3 August 2013
A label is a GUI control whose purpose is to display often simple and plain text. A label is often used to display a short, simple description of some aspect of the program's current state or a control's intended purpose among other reasons.
The function for creating a label is GuiCtrlCreateLabel. The text of the label can be changed using GuiCtrlSetData and read using the GuiCtrlRead function. The foreground can be changed with GuiCtrlSetColor. The background color can be changed with GuiCtrlSetBKColor. The function to change the font face and font size is GUICtrlSetFont.
The following example demonstrates the creation of a label.
#include <GUIConstantsEx.au3>
Opt("MustDeclareVars", 1)
Main()
Func Main()
GUICreate("My GUI") ; will create a dialog box that when displayed is centered
GUISetHelp("Notepad.exe") ; will run notepad if F1 is typed
Opt("GUICoordMode", 2)
Local Const $widthCell = 70
GUICtrlCreateLabel("Line 1 Cell 1", 10, 30, $widthCell) ; 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 * $widthCell, 0) ; next line Cell1
GUISetState(@SW_SHOWNORMAL) ; will display an empty dialog box
; Run the GUI until the dialog is closed
Do
Until GUIGetMsg() = $GUI_EVENT_CLOSE
EndFunc ;==>Example