행위

"Autoit gui"의 두 판 사이의 차이

DB CAFE

(새 문서: === 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...)
 
(GUI Controls)
 
3번째 줄: 3번째 줄:
  
 
* Label
 
* Label
A plain piece of text.
+
*: A plain piece of text.
 
* Button
 
* Button
A simple button.
+
*: A simple button.
 
* Input
 
* Input
A single line control that you can enter text into.
+
*: A single line control that you can enter text into.
 
* Edit
 
* Edit
A multi-line control that you can enter text into.
+
*: A multi-line control that you can enter text into.
 
* Checkbox
 
* Checkbox
A box that can be "checked" or "unchecked".
+
*: A box that can be "checked" or "unchecked".
 
* Radio
 
* Radio
A set of circular buttons - only one can be active at once.
+
*: A set of circular buttons - only one can be active at once.
 
* Combo
 
* Combo
A list with a dropdown box.
+
*: A list with a dropdown box.
 
* List
 
* List
A list.
+
*: A list.
 
* Date
 
* Date
A date picker.
+
*: A date picker.
 
* Pic
 
* Pic
A picture.
+
*: A picture.
 
* Icon
 
* Icon
An icon.
+
*: An icon.
 
* Progress
 
* Progress
A progress bar.
+
*: A progress bar.
 
* Tab
 
* Tab
A group of controls that are contained in tabs.
+
*: A group of controls that are contained in tabs.
 
* UpDown
 
* UpDown
A control that can be added to input controls.
+
*: A control that can be added to input controls.
 
* Avi
 
* Avi
Display an AVI format clip.
+
*: Display an AVI format clip.
 
* Menu
 
* Menu
A menu across the top of the window.
+
*: A menu across the top of the window.
 
* ContextMenu
 
* ContextMenu
A menu that appears when you right click inside the window.
+
*: A menu that appears when you right click inside the window.
 
* TreeView
 
* TreeView
A control similar to the windows file-explorer.
+
*: A control similar to the windows file-explorer.
 
* Slider
 
* Slider
A control similar to the windows sound volume control.
+
*: A control similar to the windows sound volume control.
 
* ListView
 
* ListView
A control displaying columns information.
+
*: A control displaying columns information.
 
* ListViewItem
 
* ListViewItem
A control displaying item in a listview control.
+
*: A control displaying item in a listview control.
 
* Graphic
 
* Graphic
A control displaying graphics drawn with GUICtrlSetGraphic.
+
*: A control displaying graphics drawn with GUICtrlSetGraphic.
 
* Dummy
 
* Dummy
A dummy user control.
+
*: A dummy user control.
 
[[category:autoit]]
 
[[category:autoit]]

2024년 6월 12일 (수) 08:36 기준 최신판

thumb_up 추천메뉴 바로가기


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 can be "checked" or "unchecked".
  • Radio
    A set of circular buttons - only one can be active at once.
  • Combo
    A list with a dropdown box.
  • List
    A list.
  • Date
    A date picker.
  • Pic
    A picture.
  • Icon
    An icon.
  • Progress
    A progress bar.
  • Tab
    A group of controls that are contained in tabs.
  • UpDown
    A control that can be added to input controls.
  • Avi
    Display an AVI format clip.
  • Menu
    A menu across the top of the window.
  • ContextMenu
    A menu that appears when you right click inside the window.
  • TreeView
    A control similar to the windows file-explorer.
  • Slider
    A control similar to the windows sound volume control.
  • ListView
    A control displaying columns information.
  • ListViewItem
    A control displaying item in a listview control.
  • Graphic
    A control displaying graphics drawn with GUICtrlSetGraphic.
  • Dummy
    A dummy user control.