如何让QTabBar显示在QTabWidget左侧,文字水平显示
时间: 2024-09-30 10:02:05 浏览: 95
要在`QTabWidget`中将`QTabBar`放在左侧并使其标签水平展示,你需要通过自定义样式表(Qt StyleSheet)来改变默认布局。首先,确保已经包含了`<QTabBar>`元素,并指定其布局方向为`horizontal`,然后调整`QTabBar::tab`部分的样式来控制标签的位置。
下面是一个简单的例子:
```css
QTabBar {
position: absolute;
top: 0;
left: 0; /* 将QTabBar放置在左侧 */
bottom: 0;
}
QTabBar::tab {
width: 150px; /* 根据需要设置标签宽度 */
margin-right: 10px; /* 留出空间 */
background-color: transparent;
border: none;
padding: 0;
margin-top: 4px; /* 为了保持间距一致 */
text-align: center; /* 水平居中文本 */
color: black;
border-bottom: 2px solid white; /* 下划线效果 */
}
QTabBar::tab:selected {
background-color: lightgray;
color: black;
}
```
将上述样式添加到你的应用中,通常是在`.qss`文件中,或者在运行时动态设置`QWidget`的`setStyleSheet()`函数。
阅读全文