2021-11-25 01:50:47 +00:00
|
|
|
|
#pragma execution_character_set("utf-8")
|
|
|
|
|
|
|
|
|
|
#include "frmshortcut.h"
|
2021-10-13 06:15:18 +00:00
|
|
|
|
#include <QApplication>
|
|
|
|
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
|
|
|
{
|
|
|
|
|
QApplication a(argc, argv);
|
2021-11-25 11:59:38 +00:00
|
|
|
|
a.setFont(QFont("Microsoft Yahei", 9));
|
2021-11-25 01:50:47 +00:00
|
|
|
|
|
2021-10-13 06:15:18 +00:00
|
|
|
|
frmShortCut w;
|
2021-11-25 01:50:47 +00:00
|
|
|
|
w.setWindowTitle("全局热键示例 (QQ: 517216493 WX: feiyangqingyun)");
|
2021-10-13 06:15:18 +00:00
|
|
|
|
w.show();
|
2021-11-25 01:50:47 +00:00
|
|
|
|
|
2021-10-13 06:15:18 +00:00
|
|
|
|
return a.exec();
|
|
|
|
|
}
|