【发布时间】:2021-06-16 08:27:20
【问题描述】:
我的自定义角小部件包含一些 qlabels 和 qpushbuttons,我想将其设置为 qtabwidget 的右上角,如下所示:
但是当我运行这个应用程序时,角落小部件没有出现。我仅使用 QLabel 作为角落小部件进行了测试,它可以工作。 那么为什么qtabwidget的setCornerWidget不能使用自定义的widget,有没有办法解决呢?
代码sn-ps:
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>
【问题讨论】:
-
分享 .ui 文件
-
@eyllanesc 更新了它
标签: qt qtabwidget