码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2014-10-10 20:42:54      阅读:166      评论:0      收藏:0      [点我收藏+]

标签: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程序的设置

标签:qt 单一启动 可执行程序

原文地址:http://sysq2012cto.blog.51cto.com/8202674/1562252

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!