QScrollBar样式表调整大小句柄

时间:2017-03-06 21:29:00

标签: qt qtstylesheets

我需要像图片中那样设置一些滚动条的样式:

enter image description here

经过多次痛苦和实验,我找到了如何制作渐变,并隐藏箭头。

m_scrollBarStyleSheet = "QScrollBar:horizontal { \n "
                "  background-color: qlineargradient(x1: 1, y1: 0.5, x2: 0, y2: 0.5, stop: 0 magenta, stop: 1 #FFFFFF); \n "
                "  border: 1px solid black; \n"
                "  height: 35px; \n "
                "  width: 261px; \n"
                "  margin: 0 0 0 0; \n "
                "} \n "
                "QScrollBar::handle:horizontal { \n"
                "  background-color: silver; \n"
                "  border: 1px solid grey; \n"
                "  height: 55px; \n" // seems to do nothing
                "  width: 2px; \n"   // seems to do nothing
                "} \n"
                "QScrollBar::add-line:horizontal, QScrollBar::sub-line:horizontal { \n" // hides arows
                "  border: none; background: none; \n"
                "} \n"
                "QScrollBar::add-page:horizontal, QScrollBar::sub-page:horizontal { \n" // makes background show through
                "  border: none; \n"
                "} \n";

QString s = m_scrollBarStyleSheet;
s.replace("magenta", "yellow"); // whatever color I need
horizontalScrollBar->setStyleSheet(s);
...

结果:足够接近:

enter image description here

但是我做的事似乎不允许我调整实际滚动条的大小(手柄?) - 我不能让它更薄,而且我还没有看到任何可以让它的高度超过后面矩形高度的东西

如何调整小滑动矩形的大小以尽可能地拟合所需的图像?

注意我必须使用Qt 4.8

1 个答案:

答案 0 :(得分:3)

我发现QScrollBar手柄宽度无法更改,它是以条形图的百分比计算的。

所以,我用滑块替换了滚动条,滑块也可以使手柄高度超过条的总宽度:通过设置负边距。

(我使用此example来更新我的问题中的样式。)