在css文件中设置qheaderview::section样式标题居左
时间: 2024-05-11 19:19:17 浏览: 82
CustomHeader:在 QTableView 中使用 QComboBox 自定义 QHeaderView
可以使用以下CSS代码来设置QHeaderView的section标题居左:
```css
QHeaderView::section {
font-weight: bold;
padding-left: 4px;
text-align: left;
}
```
其中,`padding-left`属性用于设置标题左侧的内边距,`text-align`属性用于控制文本对齐方式,将其设置为`left`即可让标题居左。你可以根据需要调整这些属性的值。
阅读全文