; 河许人 AutoAHK 3.1.1
#SingleInstance Force
#NoEnv
SetWorkingDir %A_ScriptDir%
SetBatchLines -1
thishotkey:="^c"
Gui Add, Hotkey, x280 y68 w75 h21 vthishotkey,^c
Hotkey % thishotkey,thishotkeylabel
Gui Show, w620 h420, 窗口
Return
GuiEscape:
GuiClose:
ExitApp
thishotkeylabel()
{
MsgBox,这是一个窗口快捷键的演示!
}
学习到东西了