本帖最后由 asura 于 2011-12-19 14:55 编辑
具体代码如下:#include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Form1", 304, 182, 192, 114)
$Button1 = GUICtrlCreateButton("EXCEL修复", 40, 32, 89, 33)
$Button2 = GUICtrlCreateButton("输入法安装", 172, 30, 89, 33)
$Button3 = GUICtrlCreateButton("取消", 175, 95, 89, 33)
$Button4 = GUICtrlCreateButton("执行", 40, 97, 89, 33)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
EndSwitch
WEnd
我就想如果我按钮下 EXCEL修复 按钮(最好在能选中这个按钮时候有相关标记等) 怎么将这个信息传递给 执行这个按钮 然后 由它来启动相关操作,如果点击取消 ,则不执行 希望大虾能帮忙下,小弟在此谢谢各位了。 |