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

Autoit gui: 두 판 사이의 차이

데브카페
새 문서: === 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...
 
 
(같은 사용자의 중간 판 하나는 보이지 않습니다)
1번째 줄: 1번째 줄:
=== GUI Controls ===
=== 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.
* 모든 사용자는 컨트롤에 익숙할 것입니다.  
* 창에서 클릭하거나 상호작용할 수 있는 모든 요소가 컨트롤의 한 종류입니다.
* AutoIt으로 생성할 수 있는 컨트롤 유형은 아래에 나열되어 있으며, 대부분의 Windows 프로그램에서 이미 사용해본 적이 있을 것입니다.


* Label
{| class="wikitable sortable"
*: A plain piece of text.
|+ UI Control List
* Button
! Control !! Description
*: A simple button.
|-
* Input
| Label || A plain piece of text used to display information.
*: A single line control that you can enter text into.
|-
* Edit
| Button || A simple button to trigger actions.
*: A multi-line control that you can enter text into.
|-
* Checkbox
| Input || A single-line text field for user input.
*: A box that can be "checked" or "unchecked".
|-
* Radio
| Edit || A multi-line text field where users can enter and edit text.
*: A set of circular buttons - only one can be active at once.
|-
* Combo
| Checkbox || A box that can be "checked" or "unchecked".
*: A list with a dropdown box.
|-
* List
| Radio || A set of circular buttons where only one can be active at once.
*: A list.
|-
* Date
| Combo || A list with a dropdown box.
*: A date picker.
|-
* Pic
| List || A control displaying a list of items.
*: A picture.
|-
* Icon
| Date || A date picker control.
*: An icon.
|-
* Progress
| Pic || Displays an image or picture.
*: A progress bar.
|-
* Tab
| Icon || Displays a small graphical icon.
*: A group of controls that are contained in tabs.
|-
* UpDown
| Progress || A progress bar to show completion status.
*: A control that can be added to input controls.
|-
* Avi
| Tab || A group of controls contained in tabs.
*: Display an AVI format clip.
|-
* Menu
| UpDown || A spinner control added to input fields.
*: A menu across the top of the window.
|-
* ContextMenu
| Avi || Displays an AVI format video clip.
*: A menu that appears when you right click inside the window.
|-
* TreeView
| Menu || A menu across the top of the window.
*: A control similar to the windows file-explorer.
|-
* Slider
| ContextMenu || A menu that appears on right-click inside the window.
*: A control similar to the windows sound volume control.
|-
* ListView
| TreeView || A control similar to the Windows file explorer.
*: A control displaying columns information.
|-
* ListViewItem
| Slider || A control similar to the Windows volume slider.
*: A control displaying item in a listview control.
|-
* Graphic
| ListView || A control displaying information in columns.
*: A control displaying graphics drawn with GUICtrlSetGraphic.
|-
* Dummy
| ListViewItem || Represents an individual item within a ListView.
*: A dummy user control.
|-
| Graphic || Displays custom graphics drawn with GUICtrlSetGraphic.
|-
| Dummy || A placeholder or mock control used during development.
|}
[[category:autoit]]
[[category:autoit]]

2024년 10월 28일 (월) 20:30 기준 최신판

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