问题描述
我自定义的角落小部件包含一些 qlabels 和 qpushbuttons,我想将其设置在 qtabwidget 的右上角,如下所示:
但是当我运行这个应用程序时,角落小部件没有出现。我使用简单的 QLabel 作为角落小部件进行了测试,它可以工作。 那么为什么使用自定义widget 对qtabwidget 的setCornerWidget 不起作用,有没有办法解决?
代码片段:
mainwindow.cpp
#include "mainwindow.h"
#include "ui_mainwindow.h"
#include <QLabel>
MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),ui(new Ui::MainWindow)
{
ui->setupUi(this);
// NOT work
customBar = new CustomWidget();
ui->tabWidget->setCornerWidget(customBar);
//Work
QLabel* label = new QLabel("test text");
ui->tabWidget->setCornerWidget(label);
}
MainWindow::~MainWindow()
{
delete ui;
}
customwidget.cpp
#include "customwidget.h"
#include "ui_customwidget.h"
CustomWidget::CustomWidget(QWidget *parent) :
QWidget(parent),ui(new Ui::CustomWidget)
{
ui->setupUi(this);
}
CustomWidget::~CustomWidget()
{
delete ui;
}
mainwindow.ui
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>MainWindow</class>
<widget class="QMainWindow" name="MainWindow">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>400</width>
<height>300</height>
</rect>
</property>
<property name="windowTitle">
<string>MainWindow</string>
</property>
<widget class="QWidget" name="centralWidget">
<widget class="QTabWidget" name="tabWidget">
<property name="geometry">
<rect>
<x>10</x>
<y>10</y>
<width>381</width>
<height>231</height>
</rect>
</property>
<property name="currentIndex">
<number>1</number>
</property>
<property name="tabsClosable">
<bool>false</bool>
</property>
<property name="movable">
<bool>true</bool>
</property>
<widget class="QWidget" name="tab">
<attribute name="title">
<string>tab1</string>
</attribute>
</widget>
<widget class="QWidget" name="tab_2">
<attribute name="title">
<string>tab2</string>
</attribute>
</widget>
</widget>
</widget>
</widget>
<layoutdefault spacing="6" margin="11"/>
<resources/>
<connections/>
</ui>
customwidget.ui
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>CustomWidget</class>
<widget class="QWidget" name="CustomWidget">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>131</width>
<height>26</height>
</rect>
</property>
<property name="windowTitle">
<string>Form</string>
</property>
<widget class="QLabel" name="label">
<property name="geometry">
<rect>
<x>10</x>
<y>0</y>
<width>81</width>
<height>21</height>
</rect>
</property>
<property name="text">
<string>custom widget</string>
</property>
</widget>
<widget class="QPushButton" name="pushButton">
<property name="geometry">
<rect>
<x>100</x>
<y>0</y>
<width>25</width>
<height>23</height>
</rect>
</property>
<property name="text">
<string/>
</property>
</widget>
</widget>
<resources/>
<connections/>
</ui>
解决方法
暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!
如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。
小编邮箱:dio#foxmail.com (将#修改为@)