请教快捷键的设置问题[已解决]
本帖最后由 yikang8888 于 2010-12-10 14:46 编辑我是新手,请教哪位高人,下面的代码,怎样把回车设为Button1的快捷键?
感谢了
#include <ButtonConstants.au3>
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Form1", 386, 204, 192, 114)
GUICtrlCreateInput("", 88, 56, 201, 21)
$Button1 = GUICtrlCreateButton("Button1", 88, 96, 201, 57)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
EndSwitch
WEnd 已经解决,谢谢 请贴出自行解决的方法,以供别人的参考 如果已经解决,可否请帖出解决方法? 很简单不好意思贴呀{:face (239):}
Dim $Form1_AccelTable = [["{ENTER}", $Button1]]
GUISetAccelerators($Form1_AccelTable) 可不可以做两个按键一起按的? 不明不白的
页:
[1]