本帖最后由 gtalee 于 2023-12-23 23:12 编辑
例如
#include <MsgBoxConstants.au3>
#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
$From1 = GUICreate("From1",300,300,-1,-1)
$Start_1 = GUICtrlCreateButton("Start",120,250,60,30)
$Label1 = GUICtrlCreateLabel("测试信息",80,140,140,20,$SS_CENTER)
$Progress1 = GUICtrlCreateProgress(80,180,140,20)
GUISetState(@SW_SHOW,$From1)
While 1
Switch GUIGetMsg()
Case $GUI_EVENT_CLOSE
Exit
Case $Start_1
main()
EndSwitch
WEnd
###################################################################################################################################################################################
Func main()
Local $sec = 10
Local $P_State = 0
While $sec >= 0
GUICtrlSetData($Label1,"将在" & $sec & "秒后完成!")
GUICtrlSetData($Progress1,$P_State)
$sec -= 1
$P_State += 10
Sleep(1000)
WEnd
GUICtrlSetData($Label1,"已完成!")
GUICtrlSetData($Progress1,0)
EndFunc
在点击按钮后,循环的过程中,响应关闭窗口的命令,如何实现,不知道调用Windows api函数创建新的进程这个方向是否正确,又或者有其他方法
|