다른 명령
새 문서: === 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. * Label *: A plain piece of text. * Button *: A simple button. * Input *: A single line control that you can enter text into. * Edit *: A multi-line control that you can enter text into. * Checkbox *: A box that c... |
편집 요약 없음 |
||
2번째 줄: | 2번째 줄: | ||
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. | 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. | ||
{| class="wikitable sortable" | |||
|+ UI Control List | |||
! 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. | |||
|} | |||
[[category:autoit]] | [[category:autoit]] |
2024년 10월 28일 (월) 20:28 판
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. |