메뉴 여닫기
개인 메뉴 토글
로그인하지 않음
만약 지금 편집한다면 당신의 IP 주소가 공개될 수 있습니다.

Autoit gui

데브카페
Devcafe (토론 | 기여)님의 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.

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.

Comments