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

Qt父窗口设置为桌面

时间:2017-08-22 01:42:59      阅读:411      评论:0      收藏:0      [点我收藏+]

标签:www   解决   argc   无法   ret   find   desktop   parent   manage   


#include "widget.h"
#include <QApplication>
#include"windows.h"
int main(int argc, char *argv[])

{
QApplication a(argc, argv);
Widget w;
//桌面句柄

HWND desktopHwnd =FindWindowW(L"Program manager",L"progman");
//设置为父窗口
SetParent((HWND)w.winId(),desktopHwnd);
w.show();
return a.exec();
}这是我的main函数报错:main.obj:-1: error: LNK2019: 无法解析的外部符号 __imp_SetParent,该符号在函数 main 中被引用main.obj:-1: error: LNK2019: 无法解析的外部符号 __imp_FindWindowW,该符号在函数 main 中被引用怎么解决啊。。。另外:Qt中除了用windows的句柄设置父窗口为桌面还有其他方法嘛

 

http://www.qter.org/forum.php?mod=viewthread&tid=11956

Qt父窗口设置为桌面

标签:www   解决   argc   无法   ret   find   desktop   parent   manage   

原文地址:http://www.cnblogs.com/findumars/p/7407334.html

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