다른 명령
편집 요약 없음 |
|||
1번째 줄: | 1번째 줄: | ||
=== GUI Controls === | === GUI Controls === | ||
* 모든 사용자는 컨트롤에 익숙할 것입니다. | |||
* 창에서 클릭하거나 상호작용할 수 있는 모든 요소가 컨트롤의 한 종류입니다. | |||
* AutoIt으로 생성할 수 있는 컨트롤 유형은 아래에 나열되어 있으며, 대부분의 Windows 프로그램에서 이미 사용해본 적이 있을 것입니다. | |||
{| class="wikitable sortable" | {| class="wikitable sortable" |
2024년 10월 28일 (월) 20:30 기준 최신판
GUI Controls
- 모든 사용자는 컨트롤에 익숙할 것입니다.
- 창에서 클릭하거나 상호작용할 수 있는 모든 요소가 컨트롤의 한 종류입니다.
- AutoIt으로 생성할 수 있는 컨트롤 유형은 아래에 나열되어 있으며, 대부분의 Windows 프로그램에서 이미 사용해본 적이 있을 것입니다.
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. |