yikang8888 发表于 2010-12-9 09:24:54

请教快捷键的设置问题[已解决]

本帖最后由 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

yikang8888 发表于 2010-12-9 09:32:31

已经解决,谢谢

leon460 发表于 2010-12-9 12:46:26

请贴出自行解决的方法,以供别人的参考

tryhi 发表于 2010-12-9 12:47:43

如果已经解决,可否请帖出解决方法?

yikang8888 发表于 2010-12-9 14:13:25

很简单不好意思贴呀{:face (239):}
Dim $Form1_AccelTable = [["{ENTER}", $Button1]]
GUISetAccelerators($Form1_AccelTable)

shuangsexing 发表于 2012-2-20 17:24:30

可不可以做两个按键一起按的?

uxuuexqyxwk 发表于 2012-7-4 21:30:54

不明不白的
页: [1]
查看完整版本: 请教快捷键的设置问题[已解决]