qt_demoe/third/hotkey/main.cpp

17 lines
339 B
C++
Raw Normal View History

2021-11-25 01:50:47 +00:00
#pragma execution_character_set("utf-8")
#include "frmhotkey.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
frmHotKey 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();
}