新增全局热键示例

This commit is contained in:
feiyangqingyun
2021-10-13 14:16:13 +08:00
parent 64240782cd
commit 508876dd18
39 changed files with 4192 additions and 59 deletions

10
shortcut/main.cpp Normal file
View File

@@ -0,0 +1,10 @@
#include "frmshortcut.h"
#include <QApplication>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
frmShortCut w;
w.show();
return a.exec();
}