作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我目前正在使用样式表来为应用程序设置主题。这是我用于 QTabWidget 的样式表:
/*QTabBar et QTabWidget*/
QTabBar::tab {
background: qlineargradient(spread:pad, x1:0.5, y1:0, x2:0.5, y2:1, stop:0 rgba(73, 73, 74, 255), stop:1 rgba(40, 40, 40, 255));
border: 1px solid rgb(190, 190, 190);
max-height: 0.6em;
min-width: 0.6em;
padding: 5px;
margin-left: -1px;
margin-right: -1px;
}
QTabBar::tab:selected, QTabBar::tab:hover {
background: qlineargradient(spread:pad, x1:0.5, y1:1, x2:0.5, y2:0, stop:0 rgba(39, 117, 219, 255), stop:1 rgba(107, 171, 249, 255));
}
QTabBar::tab:last {
border-top-right-radius: 3px;
border-bottom-right-radius: 3px;
margin-right: 0px;
}
QTabBar::tab:first {
border-top-left-radius: 3px;
border-bottom-left-radius: 3px;
margin-left: 0px;
}
QTabBar::tab:only-one {
border-radius: 3px;
margin: 0px;
}
有了这个,当 tabPosition 设置为 North 或 South 时,没问题。但是对于 East 或 West,TabBar 的边框样式不正确。
有人知道如何设置 tabPosition 设置为东/西的 TabBar 样式吗?
最佳答案
来自Qt stylesheet reference page :
The :top, :left, :right, :bottom pseudo states depending on the orientation of the tabs.
因此,例如,将您的第一个 css 规则应用于水平 QTabBar
:
QTabBar::tab:top, QTabBar::tab:bottom {
background: qlineargradient(spread:pad, x1:0.5, y1:0, x2:0.5, y2:1, stop:0 rgba(73, 73, 74, 255), stop:1 rgba(40, 40, 40, 255));
border: 1px solid rgb(190, 190, 190);
max-height: 0.6em;
min-width: 0.6em;
padding: 5px;
margin-left: -1px;
margin-right: -1px;
}
关于使用样式表时的 QTabWidget tabPosition,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7340046/
我目前正在使用样式表来为应用程序设置主题。这是我用于 QTabWidget 的样式表: /*QTabBar et QTabWidget*/ QTabBar::tab { background:
首先,我制作了一个新表格并设置了它的颜色clWhite .然后,我加入了 TPageControl并添加了 2 个新页面。一切都很好,一切的背景都是白色的(不活动的标签页眉除外)。但是,然后在页面控件
我是一名优秀的程序员,十分优秀!