我正在实现一个小示例,使用带有特定头的QTableWidget
。
然而,当我运行这个例子时,行不能正确地拉伸,正如在下面的例子中可以看到的那样(这是错误的行为):
的数据
在手动搜索之后,我得到了我想要的东西(这是预期的行为):
的
prescriptiondialog.h
class PrescriptionDialog : public QDialog
{
Q_OBJECT
public:
PrescriptionDialog();
~PrescriptionDialog();
QPushButton *mAddButton;
QPushButton *mRemoveButton;
QLineEdit *durationEdit;
QLabel *durationLbl;
DrugTable *mTable;
};
#endif // PRESCRIPTIONDIALOG_H
字符串
prescriptiondialog.cpp
#include <QHBoxLayout>
#include <QVBoxLayout>
#include <QHeaderView>
PrescriptionDialog::PrescriptionDialog()
{
setWindowTitle("Drug Mixer");
mTable = new DrugTable();
mTable->horizontalHeader()->setStretchLastSection(4);
mTable->verticalHeader()->setStretchLastSection(QHeaderView::Interactive);
mTable->show();
QObject::connect(mAddButton, &QPushButton::clicked, mTable, &DrugTable::addCustomRow);
QObject::connect(mRemoveButton, &QPushButton::clicked, mTable, &DrugTable::removeCustomRow);
setLayout(mLay);
show();
}
型
到目前为止我做了什么:
1.我试着以下面的方式使用头文件,但这并没有给予预期的行为。
这种方法的问题是,列是等间距的(我不是在寻找这种特定的行为,因为我需要用户调整他们,因为他们想要的)。最重要的是,行占用了应用程序窗口的整个空间,使行非常大。
PrescriptionDialog::PrescriptionDialog()
{
setWindowTitle("Drug Mixer");
mTable = new DrugTable();
mTable->horizontalHeader()->setStretchLastSection(4);
mTable->verticalHeader()->setStretchLastSection(QHeaderView::Interactive);
QHeaderView* header = mTable->horizontalHeader();
header->setSectionResizeMode(QHeaderView::Stretch);
QHeaderView* headerRows = mTable->verticalHeader();
headerRows->setSectionResizeMode(QHeaderView::Stretch);
mTable->show();
}
型
1.我尝试了使用QTableWidget
提供的horizontalHeader()
的选项,但这并没有提供任何改进,我实际上获得了第一个屏幕截图的效果(“何时拍摄”列都被压缩,直到我手动调整)。
PrescriptionDialog::PrescriptionDialog()
{
setWindowTitle("Drug Mixer");
mTable = new DrugTable();
mTable->horizontalHeader()->setStretchLastSection(4);
mTable->verticalHeader()->setStretchLastSection(QHeaderView::Interactive);
mTable->resizeRowsToContents();
mTable->horizontalHeader()->setSectionResizeMode(4, QHeaderView::Stretch);
mTable->show();
}
型
1.我遇到了Qt Centre — How to resize qtablewidget rows,Qt Centre — how can i have QTableWidget with autosize row height,但没有找到解决方案。
1.我遍历了Qt Centre — QTableView QTableWidget and resizeRowsToContents resizes wrongly,它使用了我在示例中使用的方法resizeRowsToContents()
,但在最终结果中没有改变任何东西。
1条答案
按热度按时间jv2fixgn1#
我试着用
resizeRowsToContents()
做了一个小例子,它对我来说很好。在Qt 5.15.1 MinGW上测试。
字符串
测试结果:
的数据