首页 > 代码库 > qt中实现单一启动qt程序的设置

qt中实现单一启动qt程序的设置

在Qt中设置程序的单一启动的方式:

1、将里面的qtsingleapplication目录拷贝到项目的源码目录中,在代码中添加文件

2、在pro文件中添加qt连接的库

QT += network 

3、main函数中的代码

#include <QtSingleApplication>


QtSingleApplication app(argc, argv);

if (app.isRunning())
{
    app.sendMessage("raise_window_noop");
    return EXIT_SUCCESS;
}


qt中实现单一启动qt程序的设置