回复 3# 229989799
我也没有找到相关的说明,不过你可以试试加上 MSGBOX 最后一个参数 [可选] 显示对话框的父窗句柄.
这样当弹出MSGBOX界面自动就不能操作了,而且弹出MSGBOX和窗口是一体的。
#include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Form1", 615, 438, 192, 124)
$Button1 = GUICtrlCreateButton("Button1", 200, 192, 75, 25)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
Case $Button1
MsgBox(0, '', '', '', $Form1)
EndSwitch
WEnd
|