gpt4 book ai didi

c++ - 更改垂直标题标题

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:50:01 27 4
gpt4 key购买 nike

如何将图片上显示的标题更改为“№”。谢谢。

enter image description here

最佳答案

该小部件是继承自 QAbstractButtonQTableCornerButton 类的对象,但它是不使用文本的私有(private) Qt API 的一部分的类,因此您不能使用 QAbstractButtonsetText(),因此另一种选择是建立一个具有上述布局的 QLabel:

#include <QtWidgets>

int main(int argc, char *argv[])
{
QApplication a(argc, argv);
QTableView w;
QStandardItemModel model(10, 10);
w.setModel(&model);
QAbstractButton *button = w.findChild<QAbstractButton *>();
if(button){
QVBoxLayout *lay = new QVBoxLayout(button);
lay->setContentsMargins(0, 0, 0, 0);
QLabel *label = new QLabel("№");
label->setContentsMargins(0, 0, 0, 0);
lay->addWidget(label);
}
w.show();
return a.exec();
}

enter image description here

关于c++ - 更改垂直标题标题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52923976/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com