AU3如何在点击按钮1 后 将按钮1内的代码执行完毕后。开始执行按钮2中的内容。。 以前我应该实现过。不过忘记是怎么调用的了。。 请老大指教一下!
使用FUCK 命令的请直接跳过。。#include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Form1", 180, 181, 192, 114)
$Button1 = GUICtrlCreateButton("Button1", 16, 32, 129, 41)
$Button2 = GUICtrlCreateButton("Button2", 16, 96, 129, 49)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
Case $Button1
MsgBox(0,0,"我是按钮1!")
Case $Button2
MsgBox(0,0,"我是按钮2,嘿嘿!")
EndSwitch
WEnd
|