main_PPT

来源:互联网 发布:如何在dos下运行java 编辑:程序博客网 时间:2024/04/30 03:42
#include "PPT.h"#include "QtGuiClass.h"#include <QtWidgets/QApplication>#include<Windows.h> int main(int argc, char *argv[]){    QApplication a(argc, argv);    PPT w;    w.show();    QtGuiClass w2;    w2.show();    bool b = QObject::connect(&w2, SIGNAL(signalNext()), &w, SLOT(onNext()));    //SwitchToThisWindow(FindWindow(L"screenClass", NULL), 0);    return a.exec();}
0 0
原创粉丝点击