다른 명령
GUI Controls
All users will be familiar with controls - anything you click on or interact with in a window is a type of control. The types of controls that can be created with AutoIt are listed below - you will have used most of them in other Windows programs.
| Control | Description |
|---|---|
| Label | A plain piece of text used to display information. |
| Button | A simple button to trigger actions. |
| Input | A single-line text field for user input. |
| Edit | A multi-line text field where users can enter and edit text. |
| Checkbox | A box that can be "checked" or "unchecked". |
| Radio | A set of circular buttons where only one can be active at once. |
| Combo | A list with a dropdown box. |
| List | A control displaying a list of items. |
| Date | A date picker control. |
| Pic | Displays an image or picture. |
| Icon | Displays a small graphical icon. |
| Progress | A progress bar to show completion status. |
| Tab | A group of controls contained in tabs. |
| UpDown | A spinner control added to input fields. |
| Avi | Displays an AVI format video clip. |
| Menu | A menu across the top of the window. |
| ContextMenu | A menu that appears on right-click inside the window. |
| TreeView | A control similar to the Windows file explorer. |
| Slider | A control similar to the Windows volume slider. |
| ListView | A control displaying information in columns. |
| ListViewItem | Represents an individual item within a ListView. |
| Graphic | Displays custom graphics drawn with GUICtrlSetGraphic. |
| Dummy | A placeholder or mock control used during development. |