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

Autoit gui

데브카페
Devcafe (토론 | 기여)님의 2024년 10월 28일 (월) 20:30 판 (→‎GUI Controls)
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)

GUI Controls

  • 모든 사용자는 컨트롤에 익숙할 것입니다.
  • 창에서 클릭하거나 상호작용할 수 있는 모든 요소가 컨트롤의 한 종류입니다.
  • AutoIt으로 생성할 수 있는 컨트롤 유형은 아래에 나열되어 있으며, 대부분의 Windows 프로그램에서 이미 사용해본 적이 있을 것입니다.
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