qt qstandarditemmodel 表头文本居中
时间: 2023-06-25 13:06:38 浏览: 169
Qt QStandardItemModel用法(超级详细)1
要让表头文本居中,可以通过自定义 QHeaderView 的样式表来实现。具体步骤如下:
1. 继承 QHeaderView,重写 paintSection 函数,设置文本居中。
```cpp
class CenterHeaderView : public QHeaderView
{
public:
explicit CenterHeaderView(Qt::Orientation orientation, QWidget* parent = nullptr)
: QHeaderView(orientation, parent)
{
}
protected:
void paintSection(QPainter* painter, const QRect& rect, int logicalIndex) const override
{
painter->save();
// 获取表头文本
QString text = model()->headerData(logicalIndex, orientation()).toString();
// 绘制背景和边框
QStyleOptionHeader opt;
initStyleOption(&opt);
opt.section = logicalIndex;
opt.text = text;
style()->drawControl(QStyle::CE_Header, &opt, painter, this);
// 设置文本居中
painter->setFont(QFont("Arial", 10, QFont::Bold));
painter->setPen(QPen(Qt::black));
painter->drawText(rect.adjusted(2, 0, -2, 0), Qt::AlignCenter, text);
painter->restore();
}
};
```
2. 在创建 QTableView 时将其表头设置为自定义的 CenterHeaderView。
```cpp
QTableView* tableView = new QTableView(this);
tableView->setHorizontalHeader(new CenterHeaderView(Qt::Horizontal, tableView));
```
这样就可以让表头文本居中了。注意,上述代码中的字体和颜色仅为示例,可以根据实际需求进行调整。
阅读全文