设置窗口图标.
GUISetIcon ( 图标文件 [, 图标ID [, 窗口句柄]] )
图标文件 | 用于显示在标题栏的图标文件. |
图标ID | [可选参数] 图标文件的图标ID. (默认为 -1). |
窗口句柄 | [可选参数] 由GUICreate返回的窗口句柄 (默认为上一窗口句柄). |
成功: | 返回 1. |
失败: | 返回 0. |
#include <GUIConstantsEx.au3>
Example()
Func Example()
Local $sFile = RegRead("HKEY_LOCAL_MACHINE\SOFTWARE\AutoIt v3\AutoIt", "InstallDir") & "\icons\filetype1.ico"
Local $msg
GUICreate("My GUI new icon") ; will create a dialog box that when displayed is centered
GUISetIcon($sFile) ; will change icon
GUISetState(); will display an empty dialog box
; Run the GUI until the dialog is closed
While 1
$msg = GUIGetMsg()
If $msg = $GUI_EVENT_CLOSE Then ExitLoop
WEnd
EndFunc ;==>Example