博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
QWidget::setLayout: Attempting to set QLayout "" on MainWindow "", which already has a layout
阅读量:4160 次
发布时间:2019-05-26

本文共 465 字,大约阅读时间需要 1 分钟。

如题,出现这个的原因是,如果你的窗口继承的是QMainwindow,需要设置

setCentralWidget();如下:     
* widget
=
new
(mainWindow
);
widget
->setLayout
(gridLayout
);
mainWindow
->setCentralWidget
(widget
);
设置好一个widget即可

转载地址:http://csdxi.baihongyu.com/

你可能感兴趣的文章
1136 . 欧拉函数
查看>>
面试题:强制类型转换
查看>>
Decorator模式
查看>>
Template模式
查看>>
Observer模式
查看>>
高性能服务器设计
查看>>
图文介绍openLDAP在windows上的安装配置
查看>>
Pentaho BI开源报表系统
查看>>
Pentaho 开发: 在eclipse中构建Pentaho BI Server工程
查看>>
JSP的内置对象及方法
查看>>
android中SharedPreferences的简单例子
查看>>
android中使用TextView来显示某个网址的内容,使用<ScrollView>来生成下拉列表框
查看>>
andorid里关于wifi的分析
查看>>
Spring MVC和Struts2的比较
查看>>
Hibernate和IBatis对比
查看>>
Spring MVC 教程,快速入门,深入分析
查看>>
Android 的source (需安装 git repo)
查看>>
LOCAL_PRELINK_MODULE和prelink-linux-arm.map
查看>>
Simple Guide to use the gdb tool in Android environment
查看>>
Netconsole to capture the log
查看>>